@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,500;0,600;0,700;1,400&display=swap');

:root {
    --primary: #4a90e2;
    --primary-dark: #2f74c5;
    --secondary: #f7a8b8;
    --accent: #e88d9e;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --white: #ffffff;
    --bg-light: #f4f8fb;
    --bg-card: #ffffff;
    --border-color: #e6f0fa;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --glass-border: rgba(74, 144, 226, 0.08);
    --gradient-brand: linear-gradient(135deg, #4a90e2 0%, #a2b9e7 50%, #f7a8b8 100%);
    --gradient-soft: linear-gradient(135deg, #f4f8fb 0%, #fef5f6 100%);
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.25;
}

/* Glassmorphism Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 14px 0;
    transition: all 0.3s ease;
}

.glass-nav-container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
}

.glass-logo img {
    height: 48px;
    transition: transform 0.3s ease;
}
.glass-logo img:hover {
    transform: scale(1.02);
}

.glass-nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
}

.glass-nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 14px;
    padding: 8px 14px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.glass-nav-links a:hover {
    color: var(--primary);
    background-color: rgba(82, 107, 194, 0.05);
}

.glass-nav-links a.active {
    color: var(--primary);
    background-color: rgba(82, 107, 194, 0.08);
}

.glass-nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.glass-lang-toggle {
    text-decoration: none;
    color: var(--primary);
    font-weight: 700;
    font-size: 13px;
    border: 1.5px solid rgba(82, 107, 194, 0.2);
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.glass-lang-toggle:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(82, 107, 194, 0.15);
}

.btn-primary {
    background: var(--gradient-brand);
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-shadow: 0 4px 15px rgba(82, 107, 194, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(82, 107, 194, 0.3);
}

/* Dropdown */
.glass-dropdown {
    position: relative;
    display: inline-block;
}

.glass-dropbtn {
    background: none;
    border: none;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 10px;
    transition: all 0.25s ease;
}

.glass-dropbtn:hover {
    color: var(--primary);
    background-color: rgba(82, 107, 194, 0.05);
}

.glass-dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 280px;
    box-shadow: 0 10px 30px rgba(18, 20, 29, 0.08);
    z-index: 1000;
    border-radius: 16px;
    overflow: hidden;
    top: 100%;
    left: 0;
    padding: 8px;
    border: 1px solid var(--border-color);
}

.glass-dropdown-content a {
    color: var(--text-light);
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.glass-dropdown-content a:hover {
    background-color: rgba(82, 107, 194, 0.04);
    color: var(--primary);
    padding-left: 20px;
}

.glass-dropdown:hover .glass-dropdown-content {
    display: block;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background-color: #0d0f17;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 6s ease-out;
}

.slide.active img {
    transform: scale(1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 15, 23, 0.75) 0%, rgba(13, 15, 23, 0.3) 100%);
    z-index: 3;
}

.slide-content {
    position: absolute;
    top: 55%;
    left: 8%;
    transform: translateY(-50%);
    z-index: 4;
    max-width: 680px;
    color: var(--white);
}

.slide-content h1 {
    font-size: clamp(2.5rem, 5vw, 4.25rem);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
}

.slide-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 35px;
    font-weight: 400;
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn-hero-primary {
    background: var(--gradient-brand);
    color: var(--white);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(82, 107, 194, 0.25);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(82, 107, 194, 0.4);
}

.btn-hero-secondary {
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    transform: translateY(-2px);
    background-color: #f1f5f9;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.slider-nav button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav button.active {
    background: var(--white);
    width: 24px;
    border-radius: 5px;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.25);
}

.slider-arrow.prev { left: 24px; }
.slider-arrow.next { right: 24px; }

/* Stats Bar */
.stats-bar {
    background: var(--gradient-brand);
    padding: 60px 24px;
    position: relative;
    z-index: 5;
    margin-top: -30px;
    border-radius: 30px 30px 0 0;
}

.stats-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    color: var(--white);
}

.stat-item h3 {
    font-size: 3.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
}

/* Sections */
.section {
    padding: 100px 24px;
}

.section-alt {
    background-color: var(--white);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    background-color: rgba(82, 107, 194, 0.08);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-sub {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin-top: 15px;
}

.section-header {
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-header.centered .section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(18, 20, 29, 0.06);
    border: 1px solid var(--border-color);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 24px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.primecare-list {
    list-style: none;
    margin: 30px 0;
}

.primecare-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.primecare-list li:last-child {
    border-bottom: none;
}

.primecare-list li img,
.primecare-list li i.primecare-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    object-fit: contain;
    font-size: 20px;
    color: var(--secondary);
}

/* Services Page & Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(18, 20, 29, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border-color);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(82, 107, 194, 0.08);
    border-color: rgba(82, 107, 194, 0.2);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    transition: transform 0.4s ease, color 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 38px;
    color: var(--primary);
}

.service-card:hover .service-icon {
    transform: scale(1.08);
    color: var(--secondary);
}

.service-card h3 {
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    flex-grow: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 700;
    margin-top: 24px;
    font-size: 0.95rem;
    transition: gap 0.2s ease;
}

.service-card:hover .service-link {
    gap: 12px;
    color: var(--primary-dark);
}

/* General Accordion FAQs (Homepage) */
.faq-list {
    background-color: var(--white);
    border-radius: 24px;
    padding: 16px 30px;
    box-shadow: 0 8px 30px rgba(18, 20, 29, 0.02);
    border: 1px solid var(--border-color);
}

.faq-item {
    border-bottom: 1px solid #f1f5f9;
}

.faq-item:last-child {
    border-bottom: none;
}

/* Success Stories */
.story-card {
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(18, 20, 29, 0.02);
    border: 1px solid var(--border-color);
}

.story-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.story-card .story-info {
    padding: 30px;
    text-align: center;
}

.story-card h4 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.story-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.story-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-1px);
}

/* Blog Section */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.blog-card {
    background-color: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(18, 20, 29, 0.02);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
}

.blog-card-img {
    height: 240px;
    overflow: hidden;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 30px;
}

.blog-card-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.blog-card-body p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
    font-size: 0.95rem;
}

/* ==========================================================================
   SUBPAGES (INNER PAGES) STYLING SYSTEM
   ========================================================================== */

/* Subpage banner section */
.slider_main {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: #090b11;
}

.slidess {
    width: 100%;
    height: 100%;
    position: relative;
}

.slidess img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

/* Inner Page Sub Navigation */
.second_nav {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    margin: -40px auto 60px;
    max-width: 800px;
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.second_nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.second_nav ul li {
    margin: 0;
}

.second_nav ul li a {
    display: block;
    padding: 20px 30px;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.25s ease;
    border-bottom: 3px solid transparent;
}

.second_nav ul li a:hover {
    color: var(--primary);
    background-color: rgba(82, 107, 194, 0.04);
}

.second_nav_toggle {
    display: none;
}

/* Inner Page Services Introduction Section */
.services {
    padding: 0 24px 60px;
}

.services_intro {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.intro_text h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro_text ul {
    list-style: none;
    margin-top: 20px;
}

.intro_text ul li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 500;
}

.intro_text ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--secondary);
    font-size: 16px;
}

.intro_img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.intro_img img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Inner Page Introduction Content Block */
.introduction {
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 24px;
}

.heading_intro {
    margin-bottom: 20px;
    border-left: 4px solid var(--primary);
    padding-left: 16px;
}

.heading_intro h3, .heading_intro h1 {
    font-size: 1.8rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.3;
}

.introduction_text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 24px;
    text-align: justify;
}

.introduction_text ul {
    margin: 20px 0 24px 20px;
}

.introduction_text ul li {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 1.05rem;
}

.introduction_text ul li p {
    margin-bottom: 0;
    display: inline;
}

/* Inner Page FAQs Accordion (subpages) */
.faq {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq:hover {
    border-color: rgba(82, 107, 194, 0.25);
    box-shadow: 0 10px 25px rgba(82, 107, 194, 0.04);
}

.faq-question {
    padding: 22px 28px;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Poppins', sans-serif;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question .arrows {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    font-weight: 400;
    line-height: 1;
}

.faq-question.active {
    color: var(--primary);
}

.faq-question.active .arrows {
    transform: rotate(45deg);
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer p {
    padding: 0 28px 24px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    text-align: justify;
}

/* Inner Page Partner Logos Section */
.logo-sec {
    background: rgba(82, 107, 194, 0.02);
    padding: 60px 24px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 80px 0;
}

.logos {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.logos img {
    max-height: 50px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(1) opacity(0.5);
    transition: all 0.3s ease;
}

.logos img:hover {
    filter: grayscale(0) opacity(1);
}

/* Inner Page Building/Hospital Section */
.hospital {
    max-width: 1100px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.hospi-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    border: 1px solid var(--border-color);
}

.hospi-img img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 480px;
    object-fit: cover;
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 24px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-buttons a img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(18, 20, 29, 0.15));
    transition: transform 0.3s ease;
}

.floating-buttons a img:hover {
    transform: scale(1.1);
}

/* Appointment Modal Popup */
.appt-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(18, 20, 29, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.appt-overlay.open {
    display: flex;
}

.appt-modal {
    background-color: var(--white);
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 480px;
    position: relative;
    box-shadow: 0 30px 70px rgba(18, 20, 29, 0.2);
    border: 1px solid var(--border-color);
}

.appt-modal h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.appt-modal input, .appt-modal select {
    width: 100%;
    padding: 14px 18px;
    margin-bottom: 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    outline: none;
}

.appt-modal input:focus, .appt-modal select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(82, 107, 194, 0.1);
}

.appt-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: #94a3b8;
    line-height: 1;
}

.appt-close:hover {
    color: var(--text-dark);
}

/* Footer Section */
footer {
    background-color: #0b0d14;
    color: rgba(255, 255, 255, 0.65);
    padding: 80px 24px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo img {
    height: 48px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.25s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    font-size: 0.95rem;
}

.footer-contact-item i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
}

/* Hamburger mobile menu button */
.glass-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.glass-burger span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .glass-nav-links, .glass-nav-actions .glass-lang-toggle {
        display: none;
    }
    .glass-burger {
        display: flex;
    }
    .section {
        padding: 60px 24px;
    }
    .slider_main {
        height: 240px;
    }
    .services_intro {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .intro_text ul li {
        text-align: left;
    }
    .second_nav {
        margin-top: -20px;
        padding: 10px;
        background: transparent;
        box-shadow: none;
        border: none;
    }
    .second_nav ul {
        display: none;
    }
    .second_nav_toggle {
        display: block;
        width: 100%;
        padding: 14px 18px;
        border: 1px solid var(--border-color);
        border-radius: 12px;
        background-color: var(--white);
        font-size: 15px;
        color: var(--text-dark);
        font-weight: 600;
        outline: none;
        cursor: pointer;
        box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}