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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--primary-white);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Colors */
:root {
    --primary-red: #c41e3a;
    --primary-blue: #0056b3;
    --primary-white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #495057;
    --success-green: #28a745;
    --medical-accent-blue: #3498db;
    --medical-light-blue: #add8e6;
    --medical-light-red: #ffc0cb;
    --medical-gradient-blue: #87ceeb;
}

/* Enhanced Typography & Medical Theme */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    background: var(--primary-white);
    font-size: 16px;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
}

h2 {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--medical-accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-blue);
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--medium-gray);
}

a {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: var(--primary-red);
    text-decoration: underline;
    text-decoration-color: var(--primary-red);
    text-decoration-thickness: 2px;
    text-underline-offset: 4px;
}

/* Medical Typography Classes */
.medical-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.medical-subheading {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--medical-accent-blue);
    margin-bottom: 1rem;
    line-height: 1.4;
}

.medical-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.medical-highlight {
    background: linear-gradient(135deg, var(--medical-light-blue), var(--medical-light-red));
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Enhanced Spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

.section-padding-large {
    padding: 8rem 0;
}

.margin-bottom-large {
    margin-bottom: 4rem;
}

.margin-bottom-medium {
    margin-bottom: 2.5rem;
}

.margin-bottom-small {
    margin-bottom: 1.5rem;
}

/* Medical Lists */
.medical-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.medical-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(0, 86, 179, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
    color: var(--dark-gray);
}

.medical-list li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--medical-gradient-blue);
    color: var(--primary-white);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Medical Blockquotes */
.medical-blockquote {
    background: linear-gradient(135deg, var(--medical-light-blue), var(--medical-light-red));
    border-left: 4px solid var(--primary-blue);
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    border-radius: 8px;
    font-style: italic;
    position: relative;
}

.medical-blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.2;
    font-family: Georgia, serif;
}

/* Medical Tables */
.medical-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--primary-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 86, 179, 0.1);
}

.medical-table thead {
    background: var(--medical-gradient-blue);
    color: var(--primary-white);
}

.medical-table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.medical-table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(0, 86, 179, 0.1);
    font-size: 1rem;
}

.medical-table tbody tr:hover {
    background: var(--medical-light-blue);
}

.medical-table tbody tr:nth-child(even) {
    background: rgba(0, 86, 179, 0.02);
}

/* Medical Code Blocks */
.medical-code {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border: 1px solid rgba(0, 86, 179, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--dark-gray);
    position: relative;
}

.medical-code::before {
    content: 'MEDICAL SPECIFICATION';
    position: absolute;
    top: -10px;
    left: 20px;
    background: var(--medical-gradient-blue);
    color: var(--primary-white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Enhanced Header & Navigation */
.header {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 86, 179, 0.1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
}

.nav {
    padding: 1rem 0;
    position: relative;
}

.nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header.scrolled .nav::after {
    opacity: 1;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    transition: transform 0.3s ease;
    background: transparent;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 100px;
    width: 280px;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
    background: transparent !important;
    background-color: transparent !important;
    flex-shrink: 0;
}

.logo:hover .logo-img {
    filter: brightness(1.2) contrast(1.2);
    transform: scale(1.02);
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.3px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    line-height: 1.2;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    transition: width 0.3s ease;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-blue);
    transform: translateY(-1px);
}

/* Mobile Navigation Enhancement */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(0, 86, 179, 0.05);
}

.hamburger:hover {
    background: rgba(0, 86, 179, 0.1);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red));
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
    background: var(--primary-red);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
    background: var(--primary-red);
}

/* Enhanced Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
    z-index: -1;
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #e63946);
    color: var(--primary-white);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
    background: linear-gradient(135deg, #e63946, var(--primary-red));
}

.btn-secondary {
    background: transparent;
    color: var(--primary-white);
    border: 2px solid var(--primary-white);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--primary-white);
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

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

.btn-outline:hover {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.3);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Enhanced Medical Red & Blue Theme */
:root {
    --primary-red: #c41e3a;
    --primary-blue: #0056b3;
    --primary-white: #ffffff;
    --light-gray: #f8f9fa;
    --medium-gray: #6c757d;
    --dark-gray: #495057;
    --success-green: #28a745;
    --medical-light-blue: #e3f2fd;
    --medical-light-red: #ffebee;
    --medical-accent-blue: #1976d2;
    --medical-accent-red: #d32f2f;
    --medical-gradient-red: linear-gradient(135deg, #c41e3a, #e63946);
    --medical-gradient-blue: linear-gradient(135deg, #0056b3, #1976d2);
    --medical-gradient-mixed: linear-gradient(135deg, #0056b3, #c41e3a);
    --medical-shadow-red: 0 4px 20px rgba(196, 30, 58, 0.3);
    --medical-shadow-blue: 0 4px 20px rgba(0, 86, 179, 0.3);
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 86, 179, 0.98) 0%, 
        rgba(196, 30, 58, 0.95) 50%, 
        rgba(0, 86, 179, 0.92) 100%);
    z-index: 1;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: medicalFloat 20s ease-in-out infinite;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(0, 86, 179, 0.03) 25%, transparent 25%),
        linear-gradient(225deg, rgba(196, 30, 58, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, rgba(0, 86, 179, 0.03) 25%, transparent 25%),
        linear-gradient(315deg, rgba(196, 30, 58, 0.03) 25%, transparent 25%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 0, 30px -30px, 0px 30px;
    animation: medicalPattern 30s linear infinite;
}

@keyframes medicalFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

@keyframes medicalPattern {
    0% { background-position: 0 0, 30px 0, 30px -30px, 0px 30px; }
    100% { background-position: 60px 60px, 90px 60px, 90px 30px, 60px 90px; }
}

.hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--primary-white);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

.badge-icon {
    background: var(--primary-white);
    color: var(--primary-red);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
    animation: titleSlideIn 1s ease-out 0.3s both;
    background: none;
    -webkit-text-fill-color: #ffffff;
    letter-spacing: 0px;
}

@keyframes titleSlideIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #000000;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
    animation: subtitleSlideIn 1s ease-out 0.5s both;
}

@keyframes subtitleSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: statsSlideIn 1s ease-out 0.7s both;
}

@keyframes statsSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #000000;
    line-height: 1;
    text-shadow: 0 1px 4px rgba(255, 255, 255, 0.8);
}

.stat-label {
    font-size: 0.85rem;
    color: #000000;
    margin-top: 0.25rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: buttonsSlideIn 1s ease-out 0.9s both;
}

@keyframes buttonsSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.btn-icon {
    margin-right: 0.5rem;
    font-size: 1.1rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    animation: trustSlideIn 1s ease-out 1.1s both;
}

@keyframes trustSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.trust-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.trust-icon {
    color: #4ade80;
    font-weight: bold;
    font-size: 1rem;
}

.hero-image {
    position: relative;
    animation: imageSlideIn 1s ease-out 0.6s both;
}

@keyframes imageSlideIn {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

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

.hero-image-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.image-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: var(--primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(10px); }
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { top: 8px; opacity: 0; }
    50% { top: 16px; opacity: 1; }
}

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

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

.btn-primary:hover {
    background: #a01732;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
}

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

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

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

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

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-red);
}

/* Enhanced Service Cards Section */
.services-quick {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light-gray) 0%, var(--primary-white) 50%, var(--light-gray) 100%);
    position: relative;
}

.services-quick::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(0, 86, 179, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(196, 30, 58, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background: var(--primary-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 86, 179, 0.1);
    text-align: left;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.15);
    border-color: rgba(0, 86, 179, 0.2);
}

.service-icon-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    position: relative;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(196, 30, 58, 0.05));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
}

.icon-emoji {
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.service-card:hover .icon-emoji {
    transform: scale(1.1);
    filter: brightness(0) invert(1);
}

.service-badge {
    background: linear-gradient(135deg, var(--primary-red), #e63946);
    color: var(--primary-white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-red);
}

.service-card p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgba(0, 86, 179, 0.15);
    transition: all 0.3s ease;
}

.service-card:hover .feature-tag {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--primary-white);
    border-color: transparent;
    transform: translateY(-2px);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    transition: width 0.3s ease;
}

.service-card:hover .service-link::after {
    width: 100%;
}

.link-arrow {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.service-card:hover .link-arrow {
    transform: translateX(5px);
}

.services-cta {
    background: linear-gradient(135deg, 
        rgba(0, 86, 179, 0.95) 0%, 
        rgba(196, 30, 58, 0.92) 50%, 
        rgba(0, 86, 179, 0.95) 100%);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: var(--primary-white);
    margin: 4rem 0;
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.2);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-blue), var(--primary-red), var(--primary-blue));
    background-size: 400% 400%;
    z-index: -1;
    animation: gradientBorder 8s ease infinite;
    border-radius: 32px;
}

.services-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: servicesFloat 18s ease-in-out infinite;
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.services-cta h3 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
    color: #ffffff;
    letter-spacing: -0.5px;
    animation: titleGlow 3s ease-in-out infinite alternate;
}

.services-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 1;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: #ffffff;
}

.services-cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-white), rgba(255, 255, 255, 0.9));
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.3rem 3rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.services-cta .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.services-cta .btn-icon {
    font-size: 1.4rem;
    margin-right: 0.5rem;
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes servicesFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -15px) rotate(120deg); }
    66% { transform: translate(-15px, 20px) rotate(240deg); }
}

@keyframes titleGlow {
    0% { filter: brightness(1); }
    100% { filter: brightness(1.2); }
}

@keyframes iconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Enhanced Services CTA Mobile Responsiveness */
@media (max-width: 768px) {
    .services-cta {
        padding: 3rem 2rem;
        margin: 3rem 1rem;
        border-radius: 25px;
    }
    
    .cta-content {
        max-width: 100%;
    }
    
    .services-cta h3 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .services-cta p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .services-cta .btn-primary {
        font-size: 1.1rem;
        padding: 1.2rem 2rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .services-cta {
        padding: 2.5rem 1.5rem;
        margin: 2rem 0.5rem;
        border-radius: 20px;
    }
    
    .services-cta h3 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .services-cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .services-cta .btn-primary {
        font-size: 1rem;
        padding: 1rem 1.5rem;
    }
    
    .services-cta .btn-icon {
        font-size: 1.2rem;
    }
}

/* Enhanced Why Choose Section with Medical Theme */
.why-choose {
    padding: 120px 0;
    background: linear-gradient(135deg, 
        rgba(227, 242, 253, 0.8) 0%, 
        rgba(255, 235, 235, 0.8) 50%, 
        rgba(227, 242, 253, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 15% 85%, rgba(0, 86, 179, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(196, 30, 58, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 86, 179, 0.04) 0%, transparent 70%);
    animation: whyFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.why-choose::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue), var(--primary-red));
    animation: gradientShift 3s ease-in-out infinite;
}

.why-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.why-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.why-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.4);
}

.why-item:hover .why-icon::before {
    opacity: 1;
    animation: iconRotate 3s linear infinite;
}

.why-icon img {
    width: 45px;
    height: 45px;
    filter: brightness(0) invert(1);
    transition: transform 0.4s ease;
}

.why-item:hover .why-icon img {
    transform: scale(1.1);
}

.why-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.why-item:hover h3 {
    color: var(--primary-red);
}

.why-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 0;
    transition: color 0.4s ease;
}

.why-item:hover p {
    color: var(--medium-gray);
}

@keyframes whyFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -10px) rotate(90deg); }
    50% { transform: translate(-10px, 15px) rotate(180deg); }
    75% { transform: translate(-15px, -5px) rotate(270deg); }
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Enhanced Why Choose Mobile Responsiveness */
@media (max-width: 768px) {
    .why-choose {
        padding: 80px 0;
    }
    
    .why-content {
        padding: 0 1rem;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .why-item {
        padding: 2rem 1.5rem;
    }
    
    .why-icon {
        width: 80px;
        height: 80px;
    }
    
    .why-icon img {
        width: 40px;
        height: 40px;
    }
    
    .why-item h3 {
        font-size: 1.3rem;
    }
    
    .why-item p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .why-choose {
        padding: 60px 0;
    }
    
    .why-grid {
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .why-item {
        padding: 1.5rem 1rem;
    }
    
    .why-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.5rem;
    }
    
    .why-icon img {
        width: 35px;
        height: 35px;
    }
    
    .why-item h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .why-item p {
        font-size: 0.95rem;
    }
}

.why-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--medical-gradient-mixed);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.why-item:hover::before {
    transform: scaleX(1);
}

.why-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.15);
    border-color: rgba(0, 86, 179, 0.2);
}

.why-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: var(--medical-gradient-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: var(--medical-shadow-blue);
}

.why-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: var(--medical-gradient-mixed);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.why-item:hover .why-icon::before {
    opacity: 1;
}

.why-item:hover .why-icon {
    transform: scale(1.1);
    background: var(--medical-gradient-mixed);
    box-shadow: 0 8px 30px rgba(0, 86, 179, 0.4);
}

.why-icon-emoji {
    font-size: 2.5rem;
    line-height: 1;
    transition: transform 0.4s ease;
}

.why-item:hover .why-icon-emoji {
    transform: scale(1.2);
}

.why-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.why-item:hover h3 {
    color: var(--primary-red);
}

.why-item p {
    color: var(--medium-gray);
    line-height: 1.7;
    font-size: 1rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.why-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.why-feature-icon {
    color: var(--success-green);
    font-weight: bold;
    font-size: 1rem;
}

/* Enhanced CTA Section with Medical Theme */
.cta {
    background: linear-gradient(135deg, 
        rgba(0, 86, 179, 0.95) 0%, 
        rgba(196, 30, 58, 0.92) 50%, 
        rgba(0, 86, 179, 0.95) 100%);
    color: var(--primary-white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 3px solid transparent;
    border-bottom: 3px solid transparent;
    background-clip: padding-box;
}

.cta::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-blue), var(--primary-red), var(--primary-blue));
    background-size: 400% 400%;
    z-index: -1;
    animation: gradientBorder 8s ease infinite;
    border-radius: inherit;
}

.cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: ctaFloat 15s ease-in-out infinite;
    z-index: 0;
    pointer-events: none;
}

@keyframes ctaFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -10px) rotate(120deg); }
    66% { transform: translate(-10px, 15px) rotate(240deg); }
}

@keyframes gradientBorder {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, var(--primary-white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    line-height: 1.6;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.cta .btn-primary {
    background: linear-gradient(135deg, var(--primary-white), rgba(255, 255, 255, 0.9));
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

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

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

.cta .btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.4);
}

.cta .btn-icon {
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

/* Enhanced CTA Mobile Responsiveness */
@media (max-width: 768px) {
    .cta {
        padding: 80px 0;
        margin: 2rem 1rem;
        border-radius: 20px;
    }
    
    .cta-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .cta h2 {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1rem;
    }
    
    .cta p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .cta .btn-primary {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .cta {
        padding: 60px 0;
        margin: 1rem 0.5rem;
    }
    
    .cta-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .cta h2 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .cta p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta .btn-primary {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
}

/* Enhanced Services Section */
.services {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.service-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--primary-white);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.service-icon img {
    width: 40px;
    height: 40px;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

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

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

.footer-section h4 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 120px;
    width: 336px;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

.footer-logo h3 {
    color: var(--primary-white);
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.footer-section a:hover {
    color: var(--primary-red);
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

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

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
    color: var(--primary-white);
    padding: 140px 0 100px;
    margin-top: 80px;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* About Page Styles */
.about-intro {
    padding: 80px 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-red);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.about-img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: var(--primary-white);
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mv-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.mv-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-icon img {
    width: 50px;
    height: 50px;
    filter: brightness(0) invert(1);
}

.mv-card h3 {
    font-size: 1.8rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.mv-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--medium-gray);
}

/* Expertise Section */
.expertise {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.expertise-item {
    text-align: center;
    padding: 2rem;
    background: var(--primary-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.expertise-item:hover {
    transform: translateY(-5px);
}

.expertise-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.expertise-item h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.expertise-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Values Section */
.values {
    padding: 80px 0;
    background: var(--primary-white);
}

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

.value-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.value-card:hover .value-icon {
    background: var(--primary-blue);
}

.value-icon-emoji {
    font-size: 2rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon-emoji {
    transform: scale(1.1);
}

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

.value-card p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 80px 0;
    background: var(--light-gray);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
}

.team-member {
    text-align: center;
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--primary-blue);
}

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

.team-member h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Certifications Section */
.certifications {
    padding: 80px 0;
    background: var(--primary-white);
}

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

.cert-item {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-logo img {
    width: 60px;
    height: 60px;
}

.cert-item h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.cert-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Services Page Styles */
.services-overview {
    padding: 60px 0;
    background: var(--light-gray);
}

.overview-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.overview-content h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    position: relative;
}

.overview-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-red);
}

.overview-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.services-detailed {
    padding: 80px 0;
    background: var(--primary-white);
}

.service-detail {
    margin-bottom: 80px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: stretch;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-detail-info {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-info h3 {
    font-size: 2.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 1.3rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.service-detail-info p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 400;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(0, 86, 179, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
}

.service-features li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--dark-gray);
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--success-green);
    font-weight: bold;
    font-size: 1.3rem;
}

.service-applications {
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(196, 30, 58, 0.03);
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
}

.service-applications h4 {
    font-size: 1.2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-applications span {
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(0, 86, 179, 0.05));
    color: var(--primary-blue);
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    margin-right: 0.8rem;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid rgba(0, 86, 179, 0.2);
    transition: all 0.3s ease;
}

.service-detail-image {
    text-align: center;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    width: 100%;
}

.service-applications span:hover {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.2), rgba(0, 86, 179, 0.1));
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.2);
}

/* Process Section */
.process {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(255, 235, 235, 0.5) 0%, 
        rgba(227, 242, 253, 0.5) 50%, 
        rgba(255, 235, 235, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 25% 75%, rgba(196, 30, 58, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 75% 25%, rgba(0, 86, 179, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(196, 30, 58, 0.02) 0%, transparent 70%);
    animation: processFloat 20s ease-in-out infinite;
    pointer-events: none;
}

.process::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue), var(--primary-red));
    animation: gradientShift 3s ease-in-out infinite;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.process-step {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.process-step:hover::before {
    transform: scaleX(1);
}

.step-icon {
    position: relative;
    margin: 0 auto 2rem;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon .icon-emoji {
    font-size: 3rem;
    line-height: 1;
    z-index: 2;
    position: relative;
    transition: transform 0.4s ease;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
    color: var(--primary-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
    animation: numberPulse 2s ease-in-out infinite;
}

.process-step:hover .step-icon .icon-emoji {
    transform: scale(1.1) rotate(5deg);
}

.process-step:hover .step-number {
    animation: numberRotate 3s linear infinite;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.process-step:hover h3 {
    color: var(--primary-red);
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    transition: color 0.4s ease;
}

.process-step:hover p {
    color: var(--medium-gray);
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.step-features .feature-tag {
    background: linear-gradient(135deg, rgba(0, 86, 179, 0.1), rgba(196, 30, 58, 0.1));
    color: var(--primary-blue);
    font-size: 0.8rem;
    padding: 0.4rem 0.8rem;
    border-radius: 15px;
    border: 1px solid rgba(0, 86, 179, 0.2);
    font-weight: 600;
    transition: all 0.3s ease;
}

.process-step:hover .step-features .feature-tag {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    color: var(--primary-white);
    transform: scale(1.05);
}

@keyframes processFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -10px) rotate(90deg); }
    50% { transform: translate(-10px, 15px) rotate(180deg); }
    75% { transform: translate(-15px, -5px) rotate(270deg); }
}

@keyframes numberPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes numberRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Quality Assurance Section */
.quality-assurance {
    padding: 100px 0;
    background: linear-gradient(135deg, 
        rgba(227, 242, 253, 0.5) 0%, 
        rgba(255, 235, 235, 0.5) 50%, 
        rgba(227, 242, 253, 0.5) 100%);
    position: relative;
    overflow: hidden;
}

.quality-assurance::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(0, 86, 179, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 30, 58, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 86, 179, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.quality-assurance::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue), var(--primary-red));
    animation: gradientShift 3s ease-in-out infinite;
}

.qa-content {
    text-align: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.qa-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 10px 40px rgba(0, 86, 179, 0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.qa-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.qa-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.qa-item:hover::before {
    transform: scaleX(1);
}

.qa-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.3);
    transition: all 0.4s ease;
    position: relative;
}

.qa-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-red), var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.qa-item:hover .qa-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.4);
}

.qa-item:hover .qa-icon::before {
    opacity: 1;
    animation: iconRotate 3s linear infinite;
}

.icon-emoji {
    font-size: 2.5rem;
    line-height: 1;
    transition: transform 0.4s ease;
}

.qa-item:hover .icon-emoji {
    transform: scale(1.1);
}

.qa-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    transition: color 0.4s ease;
}

.qa-item:hover h3 {
    color: var(--primary-red);
}

.qa-item p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 0;
    transition: color 0.4s ease;
}

.qa-item:hover p {
    color: var(--medium-gray);
}

@keyframes iconRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Gallery Page Styles */
.gallery-filters {
    padding: 40px 0;
    background: var(--light-gray);
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--primary-white);
    color: var(--dark-gray);
    border: 2px solid var(--primary-blue);
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-blue);
    color: var(--primary-white);
    transform: translateY(-2px);
}

.gallery-section {
    padding: 60px 0;
    background: var(--primary-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.gallery-image-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-image-container img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    padding: 1.5rem;
    color: var(--primary-white);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    line-height: 1.4;
}

.gallery-load-more {
    text-align: center;
    padding: 2rem 0;
}

/* Gallery Stats Section */
.gallery-stats {
    padding: 80px 0;
    background: var(--light-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2rem;
    background: var(--primary-white);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.stat-item h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-content {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info-section h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.contact-info-section > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--dark-gray);
    margin-bottom: 2rem;
}

.contact-items {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--primary-white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-emoji {
    font-size: 1.8rem;
    line-height: 1;
    transition: transform 0.3s ease;
}

.contact-item:hover .contact-icon-emoji {
    transform: scale(1.1);
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--dark-gray);
    line-height: 1.6;
}

.contact-link {
    color: var(--primary-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

/* WhatsApp CTA Styles */
.whatsapp-cta {
    margin-top: 2rem;
    text-align: center;
}

.whatsapp-cta h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #128C7E, #25D366);
}

.whatsapp-icon {
    font-size: 1.2rem;
}

.footer-contact-link {
    color: var(--primary-white);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-contact-link:hover {
    color: var(--primary-red);
    text-decoration: underline;
}

.designer-credit {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.designer-link {
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.designer-link:hover {
    color: #ff6b6b;
    text-decoration: underline;
    transform: translateY(-1px);
}

.social-links h3 {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

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

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.social-icon-emoji {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-icon:hover .social-icon-emoji {
    transform: scale(1.1);
}

/* Contact Form Styles */
.form-container {
    background: var(--primary-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-container h2 {
    font-size: 2rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.form-container > p {
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-blue);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
}

.form-actions {
    margin-top: 1rem;
}

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--primary-white);
}

.map-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}

.map-placeholder {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-placeholder iframe {
    width: 100%;
    height: 450px;
    border: none;
}

.map-info {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.map-info h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
}

.map-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.map-info li {
    margin-bottom: 1rem;
    padding-left: 20px;
    position: relative;
    color: var(--dark-gray);
    line-height: 1.6;
}

.map-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.map-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.faq-item {
    background: var(--primary-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--primary-white);
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--primary-blue);
    margin: 0;
    padding-right: 1rem;
}

.faq-toggle {
    font-size: 1.5rem;
    color: var(--primary-red);
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

/* Form validation styles */
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #dc3545;
}

.form-success {
    background: var(--success-green);
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-top: 1rem;
    text-align: center;
}

/* Enhanced Mobile Responsiveness with Medical Theme */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-image {
        order: -1;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 992px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .container {
        padding: 0 1rem !important;
    }
    
    .why-content {
        padding: 0 1rem !important;
    }
    
    .hero-container {
        padding: 0 1rem !important;
    }
    
    .cta-content {
        padding: 2rem 1rem !important;
        margin: 0 1rem !important;
    }
    
    .page-hero-content {
        padding: 0 1rem !important;
    }
    
    .about-content {
        padding: 0 1rem !important;
    }
    
    .overview-content {
        padding: 0 1rem !important;
    }
    
    .service-detail-content {
        padding: 0 1rem !important;
    }
    
    .gallery-grid {
        padding: 0 1rem !important;
    }
    
    .contact-grid {
        padding: 0 1rem !important;
    }
    
    .nav-container {
        padding: 0 15px;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        flex: 1;
        justify-content: flex-start;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: linear-gradient(135deg, 
            rgba(255, 255, 255, 0.98) 0%, 
            rgba(227, 242, 253, 0.95) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 40px rgba(0, 86, 179, 0.15);
        overflow-y: auto;
    }

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

    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: var(--medical-gradient-mixed);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(0, 86, 179, 0.1);
        width: 100%;
        text-align: center;
        transition: all 0.3s ease;
        color: var(--primary-blue);
        font-weight: 500;
    }

    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 86, 179, 0.05);
        color: var(--primary-red);
        transform: translateX(0);
    }

    .nav-link::before {
        display: none;
    }

    .logo-img {
        height: 100px;
        width: 280px;
        background: transparent !important;
        background-color: transparent !important;
        border-radius: 0;
        box-shadow: none;
        object-fit: contain;
        filter: brightness(1.1) contrast(1.1);
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 1.8rem;
        display: flex;
        align-items: center;
    }

    .nav-container {
        padding: 0 15px;
    }

    /* Gallery Stats Mobile Styles */
    .gallery-stats {
        padding: 70px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.8rem;
    }

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

    .gallery-stats .stat-item h3 {
        font-size: 1.2rem;
    }

    .gallery-stats .stat-item p {
        font-size: 0.95rem;
    }

    /* Contact Page Mobile Styles */
    .contact-content {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info-section {
        order: 2;
    }

    .contact-form-section {
        order: 1;
    }

    .contact-info-section h2 {
        font-size: 2.2rem;
    }

    .contact-info-section > p {
        font-size: 1rem;
    }

    .contact-item {
        padding: 1.2rem;
        flex-direction: row;
        text-align: left;
        gap: 1rem;
        align-items: flex-start;
        background: rgba(255, 255, 255, 0.8);
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 86, 179, 0.1);
        margin-bottom: 1rem;
        transition: all 0.3s ease;
    }

    .contact-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 86, 179, 0.15);
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        margin: 0;
        flex-shrink: 0;
    }

    .contact-details h3 {
        font-size: 1.2rem;
    }

    .contact-details p {
        font-size: 0.95rem;
    }

    .social-links {
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .form-container h2 {
        font-size: 2.2rem;
    }

    .form-container > p {
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .form-group label {
        font-size: 0.9rem;
        font-weight: 600;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 0.95rem;
        padding: 14px 16px;
        border-radius: 8px;
        border: 2px solid #e1e5e9;
        transition: all 0.3s ease;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: var(--primary-blue);
        box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    }

    .whatsapp-cta {
        text-align: center;
        margin-top: 2rem;
        padding: 1.5rem;
        background: rgba(37, 211, 102, 0.1);
        border-radius: 12px;
        border: 2px solid rgba(37, 211, 102, 0.2);
    }

    .whatsapp-cta h3 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        color: #128C7E;
    }

    .btn-large {
        padding: 15px 25px;
        font-size: 1rem;
    }

    .map-section {
        padding: 60px 0;
    }

    .map-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .map-placeholder iframe {
        height: 300px;
    }

    .map-info h3 {
        font-size: 1.5rem;
    }

    .map-info ul {
        font-size: 0.95rem;
    }

    .map-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .map-actions .btn {
        width: 100%;
        text-align: center;
    }

    .faq-section {
        padding: 60px 0;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-item {
        margin-bottom: 1rem;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0, 86, 179, 0.1);
    }

    .faq-question {
        padding: 1.2rem;
        font-size: 1rem;
        line-height: 1.4;
    }

    .faq-answer {
        padding: 0 1.2rem 1.2rem;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .page-hero {
        min-height: 60vh;
        padding: 100px 0 60px;
    }

    .page-hero-content {
        text-align: center;
    }

    .page-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .page-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .btn-whatsapp {
        padding: 10px 20px;
        font-size: 0.95rem;
    }

    .whatsapp-cta {
        margin-top: 1.5rem;
    }

    .whatsapp-cta h3 {
        font-size: 1.1rem;
    }

    .hamburger.active {
        background: rgba(196, 30, 58, 0.1);
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
        position: relative;
        background: linear-gradient(135deg, 
            rgba(0, 86, 179, 0.98) 0%, 
            rgba(196, 30, 58, 0.95) 50%, 
            rgba(0, 86, 179, 0.92) 100%);
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-red), var(--primary-blue), var(--primary-red));
        animation: gradientShift 3s ease-in-out infinite;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero-container {
        padding: 0 1rem;
        flex-direction: column;
        gap: 2rem;
        text-align: center;
        position: relative;
        z-index: 2;
    }
    
    .hero-content {
        order: 2;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        padding: 0.6rem 1.2rem;
        border-radius: 25px;
        border: 1px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 1.5rem;
        animation: float 3s ease-in-out infinite;
    }
    
    .badge-icon {
        font-size: 1rem;
        color: var(--primary-white);
    }
    
    .hero-badge span:last-child {
        font-size: 0.85rem;
        font-weight: 600;
        color: var(--primary-white);
    }
    
    .hero-title {
        font-size: 2.2rem;
        font-weight: 800;
        line-height: 1.1;
        color: var(--primary-white);
        margin-bottom: 1.5rem;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        letter-spacing: -0.5px;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
        line-height: 1.6;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 2rem;
        max-width: 100%;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    }
    
    .hero-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        background: rgba(255, 255, 255, 0.08);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 2rem;
    }
    
    .stat-item {
        text-align: center;
        padding: 0.5rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.3s ease;
    }
    
    .stat-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
    }
    
    .stat-number {
        display: block;
        font-size: 1.8rem;
        font-weight: 800;
        color: var(--primary-white);
        margin-bottom: 0.3rem;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    }
    
    .stat-label {
        display: block;
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
        line-height: 1.2;
    }
    
    .stat-divider {
        display: none;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .btn {
        width: 100%;
        padding: 1rem 1.5rem;
        border-radius: 15px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .btn-primary {
        background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
        color: var(--primary-white);
        box-shadow: 0 8px 25px rgba(0, 86, 179, 0.3);
    }
    
    .btn-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(0, 86, 179, 0.4);
    }
    
    .btn-secondary {
        background: rgba(255, 255, 255, 0.1);
        color: var(--primary-white);
        border: 1px solid rgba(255, 255, 255, 0.3);
    }
    
    .btn-secondary:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
    }
    
    .btn-icon {
        font-size: 1.1rem;
    }
    
    .hero-trust {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        margin-bottom: 2rem;
    }
    
    .trust-text {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(255, 255, 255, 0.08);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }
    
    .trust-text:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-1px);
    }
    
    .trust-icon {
        color: #4CAF50;
        font-weight: bold;
        font-size: 0.9rem;
    }
    
    .trust-text span:last-child {
        font-size: 0.85rem;
        color: var(--primary-white);
        font-weight: 500;
    }
    
    .hero-image {
        order: 1;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .hero-image-wrapper {
        position: relative;
        width: 100%;
        padding-bottom: 75%;
        border-radius: 20px;
        overflow: hidden;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero-img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 20px;
    }
    
    .hero-image-overlay {
        position: absolute;
        top: 1rem;
        right: 1rem;
    }
    
    .image-badge {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
        padding: 0.4rem 0.8rem;
        border-radius: 15px;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    }
    
    .image-badge .badge-icon {
        font-size: 0.8rem;
    }
    
    .image-badge span:last-child {
        font-size: 0.7rem;
        font-weight: 600;
        color: var(--primary-white);
    }
    
    .hero-scroll {
        position: relative;
        text-align: center;
        margin-top: 2rem;
    }
    
    .scroll-indicator {
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        opacity: 0.8;
        animation: bounce 2s infinite;
    }
    
    .scroll-text {
        font-size: 0.75rem;
        color: rgba(255, 255, 255, 0.7);
        font-weight: 500;
    }
    
    .scroll-arrow {
        width: 20px;
        height: 20px;
        border-right: 2px solid rgba(255, 255, 255, 0.7);
        border-bottom: 2px solid rgba(255, 255, 255, 0.7);
        transform: rotate(45deg);
        animation: scrollBounce 2s infinite;
    }
    
    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-5px); }
    }
    
    @keyframes bounce {
        0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
        40% { transform: translateY(-10px); }
        60% { transform: translateY(-5px); }
    }
    
    @keyframes scrollBounce {
        0%, 100% { transform: rotate(45deg) translateY(0); }
        50% { transform: rotate(45deg) translateY(-5px); }
    }

    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
        background: rgba(255, 255, 255, 0.3);
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 24px;
        font-size: 1rem;
    }

    .btn-secondary {
        border-color: var(--primary-white);
        color: var(--primary-white);
    }

    .services-quick {
        padding: 60px 0;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 2rem;
        border-radius: 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .icon-emoji {
        font-size: 1.5rem;
    }

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

    .service-features {
        gap: 0.6rem;
    }

    .feature-tag {
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
    }

    .why-choose {
        padding: 60px 0;
    }

    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-item {
        padding: 2rem 1.5rem;
    }

    .why-icon {
        width: 80px;
        height: 80px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 2.2rem;
    }

    .cta p {
        font-size: 1.1rem;
    }

    .cta .btn-primary,
    .cta .btn-secondary {
        margin: 0.5rem 0;
        width: 100%;
        max-width: 280px;
    }

    .services-cta {
        padding: 2rem;
        border-radius: 20px;
    }

    .services-cta h3 {
        font-size: 1.5rem;
    }

    .services-cta p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    .container {
        padding: 0 0.75rem !important;
    }
    
    .why-content {
        padding: 0 0.75rem !important;
    }
    
    .hero-container {
        padding: 0 0.75rem !important;
    }
    
    .footer-content {
        padding: 0 0.75rem !important;
    }
    
    .cta-content {
        padding: 1.5rem 0.75rem !important;
        margin: 0 0.75rem !important;
    }
    
    .page-hero-content {
        padding: 0 0.75rem !important;
    }
    
    .about-content {
        padding: 0 0.75rem !important;
    }
    
    .overview-content {
        padding: 0 0.75rem !important;
    }
    
    .service-detail-content {
        padding: 0 0.75rem !important;
    }
    
    .gallery-grid {
        padding: 0 0.75rem !important;
    }
    
    .contact-grid {
        padding: 0 0.75rem !important;
    }
    
    .nav-container {
        padding: 0 10px;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        flex: 1;
        justify-content: flex-start;
    }
    
    .logo-img {
        height: 40px;
        width: 112px;
        background: transparent !important;
        background-color: transparent !important;
        border-radius: 0;
        box-shadow: none;
        object-fit: contain;
        filter: brightness(1.1) contrast(1.1);
        flex-shrink: 0;
    }

    .logo-text {
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        white-space: nowrap;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 1.5rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.8rem 0;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .nav {
        padding: 0.5rem 0;
    }

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

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

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

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

    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }

    .badge-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

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

    .stat-label {
        font-size: 0.8rem;
    }

    .trust-text {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .service-card {
        padding: 1.5rem;
    }

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

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

    .service-icon {
        width: 50px;
        height: 50px;
    }

    .icon-emoji {
        font-size: 1.3rem;
    }

    .service-badge {
        font-size: 0.65rem;
        padding: 0.3rem 0.8rem;
    }

    .feature-tag {
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }

    .why-item {
        padding: 1.5rem 1rem;
    }

    .why-icon {
        width: 70px;
        height: 70px;
    }

    .why-icon img {
        width: 40px;
        height: 40px;
    }

    .why-item h3 {
        font-size: 1.2rem;
    }

    .why-item p {
        font-size: 0.9rem;
    }

    .cta h2 {
        font-size: 1.8rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .btn {
        padding: 14px 20px;
        font-size: 0.9rem;
    }

    .btn-icon {
        margin-right: 0.3rem;
        font-size: 1rem;
    }

    /* Touch-friendly interactions */
    .service-card:active {
        transform: scale(0.98);
    }

    .why-item:active {
        transform: scale(0.98);
    }

    .btn:active {
        transform: scale(0.95);
    }

    /* Improved mobile touch targets */
    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .service-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.8rem;
    }

    /* Mobile-specific medical theme adjustments */
    .medical-list li {
        font-size: 0.95rem;
        padding: 0.6rem 0;
    }

    .medical-table {
        font-size: 0.9rem;
    }

    .medical-table th,
    .medical-table td {
        padding: 0.8rem 1rem;
    }

    .medical-blockquote {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Gallery Stats Mobile Styles */
    .gallery-stats {
        padding: 60px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .gallery-stats .stat-number {
        font-size: 2.5rem;
    }

    .gallery-stats .stat-item h3 {
        font-size: 1.1rem;
    }

    .gallery-stats .stat-item p {
        font-size: 0.9rem;
    }

    /* Contact Page Mobile Styles - Small Phones */
    .contact-content {
        padding: 40px 0;
    }

    .contact-grid {
        gap: 2.5rem;
    }

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

    .contact-info-section > p {
        font-size: 0.95rem;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
    }

    .contact-details h3 {
        font-size: 1.1rem;
    }

    .contact-details p {
        font-size: 0.9rem;
    }

    .form-container h2 {
        font-size: 2rem;
    }

    .form-container > p {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .map-section {
        padding: 40px 0;
    }

    .map-placeholder iframe {
        height: 250px;
    }

    .map-info h3 {
        font-size: 1.3rem;
    }

    .map-info ul {
        font-size: 0.9rem;
    }

    .faq-section {
        padding: 40px 0;
    }

    .faq-section .section-title {
        font-size: 1.8rem;
    }
}

/* Enhanced touch interactions for mobile devices */
@media (hover: none) and (pointer: coarse) {
    .service-card:hover,
    .why-item:hover,
    .btn:hover {
        transform: none;
    }

    .service-card:active,
    .why-item:active {
        transform: scale(0.98);
        transition: transform 0.1s ease;
    }

    .btn:active {
        transform: scale(0.95);
        transition: transform 0.1s ease;
    }

    .nav-link:active {
        background: rgba(0, 86, 179, 0.1);
        transform: scale(0.98);
    }
}

/* Enhanced Footer with Medical Theme */
.footer {
    background: linear-gradient(135deg, 
        var(--primary-blue) 0%, 
        rgba(0, 86, 179, 0.95) 25%, 
        rgba(196, 30, 58, 0.9) 75%, 
        var(--primary-red) 100%);
    color: var(--primary-white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue), var(--primary-red));
    animation: footerGradient 3s ease-in-out infinite;
}

@keyframes footerGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-white), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.2);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--primary-white);
    position: relative;
    padding-bottom: 0.8rem;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.3);
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo-img {
    height: 120px;
    width: 336px;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    object-fit: contain;
    filter: brightness(1.1) contrast(1.1);
}

.footer-logo:hover .footer-logo-img {
    filter: brightness(1.2) contrast(1.2);
    transform: scale(1.02);
}

.footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.medical-icon {
    font-size: 1rem;
    animation: medicalIconPulse 2s ease-in-out infinite;
}

@keyframes medicalIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.footer-section p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-social {
    margin-top: 2rem;
}

.footer-social h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--primary-white);
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-icon {
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.2rem;
    display: block;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-section ul li a::before {
    content: '▶';
    position: absolute;
    left: 0;
    font-size: 0.7rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-white);
    padding-left: 1.5rem;
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.3);
}

.footer-section ul li a:hover::before {
    color: var(--primary-white);
    transform: scale(1.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.9rem;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(0, 86, 179, 0.2);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-red));
    border-radius: 50%;
    font-size: 0.9rem;
    flex-shrink: 0;
    margin-top: 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: var(--primary-white);
}

.contact-item strong {
    color: rgba(0, 0, 0, 0.9);
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2rem 0 0;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.footer-bottom-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-red), var(--primary-blue));
    transition: width 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--primary-white);
    text-shadow: 0 2px 5px rgba(255, 255, 255, 0.3);
}

.footer-bottom-links a:hover::after {
    width: 100%;
}

/* Enhanced visibility for footer content */
.footer-section:hover {
    transform: translateY(-2px);
}

.footer-section {
    transition: transform 0.3s ease;
}

/* Enhanced text visibility */
.footer-section p,
.footer-section ul li a,
.contact-item {
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
    
    .footer-section:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 0 20px;
        background: linear-gradient(135deg, 
            var(--primary-blue) 0%, 
            rgba(0, 86, 179, 0.95) 25%, 
            rgba(196, 30, 58, 0.9) 75%, 
            var(--primary-red) 100%);
        position: relative;
    }
    
    .footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-red), var(--primary-blue), var(--primary-red));
        animation: gradientShift 3s ease-in-out infinite;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-section:first-child {
        grid-column: span 1;
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 20px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-logo {
        justify-content: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo-img {
        height: 80px;
        width: 220px;
    }
    
    .footer-logo h3 {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .footer-section {
        background: rgba(255, 255, 255, 0.03);
        padding: 1.5rem;
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }
    
    .footer-section:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(0, 86, 179, 0.2);
    }
    
    .footer-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--primary-white);
        text-align: center;
        border-bottom: 2px solid var(--primary-red);
        padding-bottom: 0.5rem;
    }
    
    .footer-section h4 {
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 1rem;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .footer-section ul {
        text-align: center;
    }
    
    .footer-section ul li {
        margin-bottom: 0.8rem;
    }
    
    .footer-section a {
        font-size: 0.95rem;
        padding: 0.3rem 0;
        display: block;
        transition: all 0.3s ease;
        border-radius: 5px;
    }
    
    .footer-section a:hover {
        color: var(--primary-white);
        background: rgba(0, 86, 179, 0.2);
        transform: translateX(5px);
    }
    
    .footer-logo-img {
        height: 70px;
        width: 200px;
    }
    
    .footer-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-red), var(--primary-blue));
        border: none;
        box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    }
    
    .social-links {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .social-link {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .social-link:hover {
        background: var(--primary-blue);
        transform: translateY(-3px) scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 86, 179, 0.4);
    }
    
    .contact-info {
        gap: 1rem;
    }
    
    .contact-item {
        background: rgba(255, 255, 255, 0.05);
        padding: 1rem;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(5px);
        transition: all 0.3s ease;
    }
    
    .contact-item:hover {
        background: rgba(255, 255, 255, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 86, 179, 0.2);
    }
    
    .contact-icon {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-item div {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .footer-bottom {
        margin-top: 3rem;
        padding: 1.5rem 1rem;
        background: rgba(0, 0, 0, 0.3);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.8rem;
        padding: 0.3rem 0.8rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .footer-bottom-links a:hover {
        background: rgba(0, 86, 179, 0.3);
        transform: translateY(-2px);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        padding: 0 0.5rem;
        gap: 1.5rem;
    }
    
    .footer-section:first-child {
        padding: 1.5rem;
    }
    
    .footer-logo-img {
        height: 60px;
        width: 180px;
    }
    
    .footer-logo h3 {
        font-size: 1.5rem;
    }
    
    .footer-section {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.6rem;
    }
    
    .footer-section a {
        font-size: 0.9rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        border-radius: 10px;
    }
    
    .contact-icon {
        font-size: 1.3rem;
    }
    
    .contact-item div {
        font-size: 0.85rem;
    }
    
    .social-link {
        width: 35px;
        height: 35px;
    }
    
    .footer-bottom {
        padding: 1rem 0.5rem;
        margin-top: 2rem;
    }
    
    .footer-bottom-content p {
        font-size: 0.8rem;
    }
    
    .footer-bottom-links a {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}

/* Video Styling for Medical Gas Pipeline - Phone Frame Style */
.service-video,
.gallery-video {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    display: block;
}

.gallery-video {
    min-height: 280px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 86, 179, 0.8) 0%, 
        rgba(196, 30, 58, 0.7) 100%);
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .video-overlay {
    opacity: 1;
    pointer-events: all;
}

.gallery-info h3 {
    color: var(--primary-red);
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.video-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .video-controls {
    opacity: 1;
}

.video-play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 3px solid var(--primary-white);
    color: var(--primary-blue);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.video-play-btn:hover {
    background: var(--primary-white);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}

.video-play-btn:active {
    transform: scale(0.95);
}

/* Service Detail Image Container - Phone Frame Style */
.service-detail-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    width: 100%;
    height: 100%;
    min-height: 400px;
    text-align: center;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-image .video-overlay {
    opacity: 0.1;
    pointer-events: none;
}

.service-detail-image:hover .video-overlay {
    opacity: 0;
}

.service-detail-image .video-controls {
    opacity: 0;
}

.service-detail-image:hover .video-controls {
    opacity: 1;
    pointer-events: all;
}

/* Responsive Video - Phone Frame Style */
@media (max-width: 768px) {
    .service-video {
        min-height: 300px;
    }
    
    .gallery-video {
        min-height: 200px;
    }
    
    .video-play-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    /* Responsive Service Layout */
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail-content.reverse {
        direction: ltr;
    }
    
    .service-detail-image {
        min-height: 300px;
        order: -1;
    }
    
    .service-detail-info {
        padding: 0.5rem;
    }
    
    .service-detail-info h3 {
        font-size: 1.8rem;
    }
    
    .service-subtitle {
        font-size: 1.1rem;
    }
    
    .service-detail-info p {
        font-size: 1.05rem;
    }
    
    .service-features {
        padding: 1rem;
    }
    
    .service-applications {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .service-video {
        min-height: 250px;
    }
    
    .gallery-video {
        min-height: 180px;
    }
    
    .video-play-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .service-detail-image {
        min-height: 250px;
    }
    
    .service-detail-info h3 {
        font-size: 1.6rem;
    }
    
    .service-subtitle {
        font-size: 1rem;
    }
    
    .service-detail-info p {
        font-size: 1rem;
    }
    
    .service-features {
        padding: 0.8rem;
    }
    
    .service-features li {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .service-applications {
        padding: 0.8rem;
    }
    
    .service-applications span {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        margin-right: 0.5rem;
        margin-bottom: 0.5rem;
    }
}

/* Professional Animations and Micro-interactions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes medicalFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-10px) rotate(2deg);
    }
    66% {
        transform: translateY(5px) rotate(-2deg);
    }
}

@keyframes medicalGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 86, 179, 0.3);
    }
    50% {
        box-shadow: 0 8px 40px rgba(196, 30, 58, 0.4);
    }
}

/* Animation Classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out;
}

.animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s ease-in-out infinite;
}

.animate-medicalFloat {
    animation: medicalFloat 6s ease-in-out infinite;
}

.animate-medicalGlow {
    animation: medicalGlow 3s ease-in-out infinite;
}

/* Enhanced Hover Effects */
.medical-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.medical-hover:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 86, 179, 0.2);
}

.medical-glow:hover {
    box-shadow: 0 8px 40px rgba(196, 30, 58, 0.4);
    border-color: var(--primary-red);
}

/* Loading Animations */
.medical-loader {
    width: 40px;
    height: 40px;
    border: 4px solid rgba(0, 86, 179, 0.1);
    border-top: 4px solid var(--primary-blue);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Medical Badge Animation */
.medical-badge-pulse {
    animation: medicalBadgePulse 2s ease-in-out infinite;
}

@keyframes medicalBadgePulse {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 8px 30px rgba(196, 30, 58, 0.6);
        transform: scale(1.05);
    }
}

/* Scroll Animations */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

/* Medical Icon Animations */
.medical-icon-bounce {
    animation: medicalIconBounce 3s ease-in-out infinite;
}

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

/* Text Gradient Animation */
.medical-text-gradient {
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-red), var(--primary-blue));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: medicalTextGradient 3s ease-in-out infinite;
}

@keyframes medicalTextGradient {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Enhanced About Us Page Hero Section */
.page-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 80px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-red) 100%);
}

.page-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(0, 86, 179, 0.95) 0%, 
        rgba(196, 30, 58, 0.9) 50%, 
        rgba(0, 86, 179, 0.85) 100%);
    z-index: 1;
}

.page-hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: heroFloat 20s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -20px) rotate(120deg); }
    66% { transform: translate(-20px, 30px) rotate(240deg); }
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.03) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(255, 255, 255, 0.02) 50%, transparent 70%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem 2rem;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    color: var(--primary-white);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); }
    50% { transform: scale(1.05); box-shadow: 0 12px 40px rgba(255, 255, 255, 0.2); }
}

.badge-icon {
    font-size: 1.2rem;
    animation: iconBounce 2s ease-in-out infinite;
}

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

.page-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.page-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.page-hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--primary-white);
    font-size: 1rem;
    font-weight: 500;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

/* Responsive Design for About Page Hero */
@media (max-width: 768px) {
    .page-hero {
        min-height: 60vh;
        padding: 120px 0 60px;
    }

    .page-hero-content {
        padding: 2rem 1rem;
    }

    .page-hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.2rem;
        margin-bottom: 1.5rem;
    }

    .page-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .page-subtitle {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }

    .page-hero-features {
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-feature {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 2rem;
    }

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

    .page-hero-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .hero-feature {
        font-size: 0.85rem;
        padding: 0.6rem 0.8rem;
    }

    .feature-icon {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }
}
