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

:root {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --light-blue: #dbeafe;
    --primary-green: #059669;
    --secondary-green: #10b981;
    --light-green: #d1fae5;
    --white: #ffffff;
    --light-gray: #f8fafc;
    --gray: #64748b;
    --dark-gray: #1e293b;
    --text-dark: #0f172a;
    --text-light: #64748b;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Header Styles */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 16px;
    border-bottom: none;
    gap: 12px;
    flex-wrap: nowrap;
}

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

.logo-image {
    height: 56px;
    width: auto;
    min-width: 70px;
    max-width: 200px;
    object-fit: contain;
    display: block;
    background: transparent;
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 50%, var(--secondary-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
    position: relative;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-line1,
.logo-line2 {
    display: block;
}

.header-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.header-email i {
    color: var(--primary-green);
}

.header-email a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.header-email a:hover {
    color: var(--primary-blue);
}

/* Navigation */
.navbar {
    position: relative;
    display: flex;
    flex: 1;
    justify-content: center;
    min-width: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    justify-content: center;
    flex-wrap: nowrap;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 10px 12px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 5px;
    margin: 0 3px;
}

.nav-link:hover {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
}

.nav-link.active {
    color: var(--primary-blue);
    background: var(--light-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px 2px 0 0;
}

.cta-button {
    background: var(--primary-blue);
    color: var(--white) !important;
    border-radius: 5px;
    margin-left: 10px;
}

.cta-button:hover {
    background: var(--secondary-blue);
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 250px;
    box-shadow: var(--shadow-lg);
    border-radius: 5px;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 10px 0;
    margin-top: 5px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--light-blue);
    color: var(--primary-blue);
    padding-left: 25px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    transition: all 0.3s ease;
}

/* Header Right (Location + Email) */
.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Interactive chips for header contact items */
.interactive-chip {
    padding: 6px 10px;
    border-radius: 999px;
    text-decoration: none;
    color: var(--text-light);
    transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
    border: 1px solid rgba(0,0,0,0.05);
    cursor: url('https://cdn.jsdelivr.net/gh/twitter/twemoji@14.0.2/assets/72x72/1f489.png') 6 0, pointer; /* syringe cursor with fallback */
}
.interactive-chip i {
    transition: transform 0.25s ease, color 0.25s ease;
}
.interactive-chip:hover,
.interactive-chip:focus-visible {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    color: #ffffff;
    transform: translateY(-1px);
    outline: none;
}
.interactive-chip:hover i,
.interactive-chip:focus-visible i {
    color: #ffffff;
    transform: scale(1.1);
}

.header-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.95rem;
    white-space: nowrap;
}

.header-location i {
    color: var(--primary-green);
}

/* Hero Section */
.hero {
    position: relative;
    color: var(--white);
    padding: 120px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.04);
    filter: brightness(0.9);
}

.hero-slide.active {
    opacity: 1;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    color: var(--primary-blue);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hero-arrow:hover {
    background: var(--white);
    transform: translateY(-50%) scale(1.06);
    color: var(--primary-green);
}

.hero-arrow-prev { left: 16px; }
.hero-arrow-next { right: 16px; }

.hero-dots {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.hero-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dots button[aria-selected="true"] {
    background: var(--white);
    transform: scale(1.1);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.unsplash.com/photo-1582719471384-894fbb16e074?w=1920&h=1080&fit=crop');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.55) 0%, rgba(5, 150, 105, 0.55) 100%);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    background: var(--light-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-large {
    padding: 18px 45px;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: 80px 20px;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-blue), var(--primary-green));
    margin: 0 auto 20px;
    border-radius: 2px;
}

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

/* Mission Section */
/* About Section */
.about-section {
    background: var(--light-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 40px;
}

.section-header.align-left {
    text-align: left;
}
.section-header.align-left .underline {
    margin-left: 0;
}

.about-media {
    position: relative;
    min-height: 360px;
}

.about-photo {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-photo-primary {
    top: 0;
    left: 0;
    right: 20%;
    height: 75%;
}

.about-photo-secondary {
    bottom: 0;
    right: 0;
    width: 60%;
    height: 65%;
    transform: translateY(10%);
}

.about-badge {
    position: absolute;
    left: 40%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: var(--primary-green);
    font-size: 2rem;
}

.about-content .about-title {
    font-size: 1.6rem;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Why Choose Us */
.why-choose-us {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    position: relative;
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    border-radius: 12px;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 18px rgba(0,0,0,0.08);
}

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

.feature-card::before {
    content: '';
    position: absolute;
    inset: 2px; /* thin gradient border */
    border-radius: 10px;
    background: var(--light-gray);
    z-index: 0;
}

.feature-card:hover::before {
    background: var(--white);
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

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

.feature-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Section */
.services-section {
    background: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.8rem;
    margin: -35px auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow);
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: center;
}

.service-card > p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
    text-align: center;
}

.service-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    padding: 0;
    word-wrap: break-word;
}

.service-details.active {
    max-height: 1000px;
    padding: 20px 0;
    margin-bottom: 20px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.service-details ul li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
    border-bottom: 1px solid var(--light-gray);
    word-wrap: break-word;
}

.service-details ul li:last-child {
    border-bottom: none;
}

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

.service-details .training-intro,
.service-details .training-modules,
.service-details .training-mentors {
    margin: 15px 0;
    color: var(--text-dark);
    line-height: 1.7;
}

.service-details .training-intro {
    margin-top: 0;
}

.learn-more-btn {
    background: none;
    border: none;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    padding: 10px 0;
    margin: 20px auto 0;
    font-size: 1rem;
    font-family: inherit;
}

.learn-more-btn:hover {
    gap: 12px;
    color: var(--primary-blue);
}

.learn-more-btn i {
    transition: transform 0.3s ease;
}

.learn-more-btn.active i {
    transform: rotate(180deg);
}

/* Therapeutic Section */
.therapeutic-section {
    background: var(--white);
}

.therapeutic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
}

.therapeutic-item {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    background: var(--tile-gradient, linear-gradient(135deg, var(--primary-blue), var(--primary-green)));
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    color: #ffffff;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.therapeutic-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.14);
}

.therapeutic-item:hover .therapeutic-icon {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.therapeutic-item:active {
    transform: translateY(-2px) scale(0.99);
}

/* Subtle sheen sweep - visible on mobile too */
.therapeutic-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    transform: skewX(-20deg);
    background: linear-gradient(120deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.28) 50%, rgba(255,255,255,0) 100%);
    animation: tile-sheen 6s linear infinite;
    pointer-events: none;
}

@keyframes tile-sheen {
    0% { left: -150%; }
    100% { left: 200%; }
}

.therapeutic-item:nth-child(1) { --tile-gradient: linear-gradient(135deg, #1e3a8a, #059669); }
.therapeutic-item:nth-child(2) { --tile-gradient: linear-gradient(135deg, #8b5cf6, #06b6d4); }
.therapeutic-item:nth-child(3) { --tile-gradient: linear-gradient(135deg, #f59e0b, #ef4444); }
.therapeutic-item:nth-child(4) { --tile-gradient: linear-gradient(135deg, #0ea5e9, #22c55e); }
.therapeutic-item:nth-child(5) { --tile-gradient: linear-gradient(135deg, #ef4444, #f97316); }
.therapeutic-item:nth-child(6) { --tile-gradient: linear-gradient(135deg, #06b6d4, #3b82f6); }
.therapeutic-item:nth-child(7) { --tile-gradient: linear-gradient(135deg, #14b8a6, #84cc16); }
.therapeutic-item:nth-child(8) { --tile-gradient: linear-gradient(135deg, #f43f5e, #a78bfa); }
.therapeutic-item:nth-child(9) { --tile-gradient: linear-gradient(135deg, #64748b, #0ea5e9); }
.therapeutic-item:nth-child(10) { --tile-gradient: linear-gradient(135deg, #f59e0b, #10b981); }

.therapeutic-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: saturate(160%) blur(2px);
}

.therapeutic-item h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

/* Therapeutic icon animations and interactions */
.therapeutic-icon i {
    transition: transform 0.25s ease, filter 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
    animation: icon-idle 3s ease-in-out infinite;
    will-change: transform;
}

.therapeutic-item:hover .therapeutic-icon i {
    animation: icon-hover 0.9s ease-in-out infinite;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
}

.therapeutic-item:active .therapeutic-icon i {
    transform: scale(0.92);
}

/* Ripple effect on click */
.therapeutic-icon::after {
    content: '';
    position: absolute;
    left: var(--ripple-x, 50%);
    top: var(--ripple-y, 50%);
    transform: translate(-50%, -50%) scale(0);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    opacity: 0;
    pointer-events: none;
}

.therapeutic-icon.ripple-active::after {
    animation: icon-ripple 600ms ease-out;
}

@keyframes icon-idle {
    0%   { transform: translateY(0) }
    50%  { transform: translateY(-3px) }
    100% { transform: translateY(0) }
}

@keyframes icon-hover {
    0%   { transform: translateY(0) scale(1) rotate(0deg) }
    50%  { transform: translateY(-2px) scale(1.12) rotate(1.5deg) }
    100% { transform: translateY(-1px) scale(1.06) rotate(-1.5deg) }
}

@keyframes icon-ripple {
    0%   { transform: translate(-50%, -50%) scale(0); opacity: 0.45; }
    70%  { opacity: 0.25; }
    100% { transform: translate(-50%, -50%) scale(12); opacity: 0; }
}

/* Clients (Our Clients) Section */
.clients-section {
	background: linear-gradient(180deg, var(--light-gray) 0%, #ffffff 100%);
}

/* Locations Section */
.locations-section {
    background: var(--white);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.location-card {
    position: relative;
    text-align: center;
    padding: 30px 20px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: 0 10px 18px rgba(0,0,0,0.08);
}

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.location-card::before {
    content: '';
    position: absolute;
    inset: 2px; /* thin inner inset to create gradient border */
    border-radius: 10px;
    background: var(--light-gray);
    z-index: 0;
}

.location-card:hover::before {
    background: var(--white);
}

.location-card > * {
    position: relative;
    z-index: 1;
}

.location-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.location-card:hover .location-icon {
    background: rgba(59, 130, 246, 0.1);
    color: var(--primary-green);
}

.location-card h4 {
    font-size: 1rem;
    font-weight: 600;
}
.logo-scroller {
	position: relative;
	overflow: hidden;
	width: 100%;
	-webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
	mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.logo-track {
	display: flex;
	align-items: center;
	gap: 40px;
	width: max-content;
	animation: logo-scroll 45s linear infinite;
	will-change: transform;
}

.logo-scroller:hover .logo-track {
	animation-play-state: paused;
}

.logo-item {
	flex: 0 0 auto;
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-width: 140px;
	height: 120px;
	padding: 12px 20px;
	border-radius: 12px;
	position: relative;
	background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
	box-shadow: 0 10px 18px rgba(0,0,0,0.08);
}

.logo-item::before {
	content: '';
	position: absolute;
	inset: 4px;
	border-radius: 10px;
	background: var(--white);
	z-index: 0;
}

.logo-item > * {
	position: relative;
	z-index: 1;
}

.logo-item img {
	height: 48px;
	width: auto;
	display: block;
	filter: grayscale(100%) contrast(0.9) opacity(0.85);
	transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.logo-item:hover img,
.logo-item:active img,
.logo-item:focus-within img {
	filter: none;
	opacity: 1;
	transform: scale(1.05);
}

.logo-item:hover,
.logo-item:focus-within {
	box-shadow: 0 16px 30px rgba(0,0,0,0.14);
}

.logo-name {
	font-size: 0.9rem;
	color: var(--text-dark);
	text-align: center;
	white-space: nowrap;
}

.logo-fallback {
	display: none;
	align-items: center;
	justify-content: center;
	height: 48px;
	color: var(--primary-blue);
	font-weight: 700;
	letter-spacing: 0.2px;
}

@keyframes logo-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 968px) {
	.logo-track {
		gap: 28px;
		animation-duration: 38s;
	}
	.logo-item {
		min-width: 120px;
		height: 95px;
		padding: 10px 16px;
	}
	.logo-item img {
		height: 42px;
	}
}

@media (max-width: 640px) {
	.logo-track {
		gap: 20px;
		animation-duration: 32s;
	}
	.logo-item {
		min-width: 100px;
		height: 85px;
		padding: 8px 12px;
	}
	.logo-item img {
		height: 36px;
	}
}

/* end services revert */

/* News Section */
.news-section {
    background: var(--light-gray);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.news-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-green));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
}

.news-content {
    padding: 25px;
}

.news-date {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 600;
}

.news-content h3 {
    color: var(--primary-blue);
    margin: 15px 0;
    font-size: 1.2rem;
}

.news-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.7;
}

.news-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.news-link:hover {
    gap: 12px;
    color: var(--primary-green);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-green) 100%);
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 60px 20px 20px;
}

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

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.8);
}

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

.opening-hours {
    margin-top: 25px;
}

.opening-hours-list {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-green);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 968px) {
    .header-top {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 12px 15px 12px 10px;
        position: relative;
    }
    
    .header-right {
        display: none;
    }
    
    .logo {
        flex-direction: row;
        gap: 10px;
        flex: 1;
        align-items: center;
        margin-right: 10px;
    }
    
    .logo h1 {
        font-size: 1rem;
        line-height: 1.2;
    }
    
    .logo-image {
        height: 50px;
        flex-shrink: 0;
    }
    
    .header-email {
        font-size: 0.75rem;
        white-space: nowrap;
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 20px 0;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 15px;
        width: 100%;
        justify-content: center;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        box-shadow: none;
        background: var(--light-gray);
        margin: 0;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: opacity 0.3s ease, max-height 0.3s ease;
    }

    .dropdown.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .hamburger {
        display: flex;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        padding: 5px;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }


    .section-header h2 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
    
    /* About responsive */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .about-media {
        min-height: 320px;
    }
    .about-photo-primary {
        right: 10%;
        height: 70%;
    }
    .about-photo-secondary {
        width: 65%;
        height: 55%;
        transform: translateY(0);
    }
    .about-badge {
        width: 100px;
        height: 100px;
        font-size: 1.6rem;
        left: 50%;
        top: 60%;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }

    .header-top {
        padding: 10px 10px 10px 8px;
    }

    .logo {
        gap: 8px;
        margin-right: 5px;
    }

    .logo h1 {
        font-size: 0.85rem;
        line-height: 1.15;
    }

    .logo-image {
        height: 45px;
    }

    .header-email {
        display: none;
    }

    .nav-menu {
        top: 65px;
        padding: 15px 0;
    }

    .hamburger {
        right: 8px;
    }

    .hero {
        padding: 60px 15px;
        min-height: 500px;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 25px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .btn {
        text-align: center;
        padding: 12px 25px;
        font-size: 0.95rem;
        width: 100%;
    }

    section {
        padding: 50px 15px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }

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

    .mission-text {
        font-size: 0.95rem;
    }

    .mission-text .lead {
        font-size: 1.05rem;
    }

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

    .service-card {
        padding: 0;
    }

    .service-card-content {
        padding: 25px 20px;
    }

    .service-image {
        height: 180px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin: -30px auto 20px;
    }

    .service-card h3 {
        font-size: 1.15rem;
    }

    .service-card > p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .service-details {
        font-size: 0.85rem;
    }

    .service-details ul li {
        font-size: 0.85rem;
        padding: 8px 0 8px 20px;
    }

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

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

    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.15rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    .therapeutic-item {
        padding: 20px 15px;
    }

    .therapeutic-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }

    .therapeutic-item h4 {
        font-size: 0.9rem;
    }

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

    .news-image {
        height: 150px;
        font-size: 2rem;
    }

    .news-content {
        padding: 20px;
    }

    .news-content h3 {
        font-size: 1.1rem;
    }

    .news-content p {
        font-size: 0.9rem;
    }

    .contact-cta {
        padding: 60px 15px;
    }

    .cta-content h2 {
        font-size: 1.75rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
    
    /* About small screens */
    .about-media {
        min-height: 260px;
    }
    .about-photo-primary {
        right: 15%;
        height: 65%;
    }
    .about-photo-secondary {
        width: 70%;
        height: 50%;
    }
    .about-badge {
        width: 84px;
        height: 84px;
        font-size: 1.4rem;
        left: 55%;
        top: 62%;
    }
    .about-content .about-title {
        font-size: 1.25rem;
    }

    .footer {
        padding: 40px 15px 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 1.1rem;
    }

    .footer-column h4 {
        font-size: 1rem;
    }

    .footer-column p,
    .footer-column ul li {
        font-size: 0.9rem;
    }
}

