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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #181D23;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    overflow: hidden;
}

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

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

.navbar:hover {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transform: translateX(-50%) translateY(-2px);
}

.nav-container {
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    position: relative;
    z-index: 2;
}

.nav-logo .logo {
    height: 30px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #181D23;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #807573;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #807573, #6A5F5D);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Buttons */
.btn-primary {
    background: #ceb25f;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(150, 123, 56, 0.25);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary::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;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(206, 178, 95, 0.45);
}

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

.btn-primary.full-width {
    width: 100%;
    padding: 16px;
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.3);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.btn-secondary:hover {
    background: rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

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

/* Social Media Buttons */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.btn-social.instagram {
    background: #ceb25f;
    color: #ffffff;
    border-color: rgba(206, 178, 95, 0.5);
}

.btn-social.instagram svg {
    color: #ffffff;
}

.btn-social.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(206, 178, 95, 0.45);
}

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

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


.btn-social.instagram {
    background: #ceb25f;
    color: #ffffff;
}

.btn-social.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(206, 178, 95, 0.45);
}

.btn-social.facebook {
    background: linear-gradient(135deg, #807573 0%, #6A5F5D 100%);
    color: white;
}

.btn-social.facebook:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(128, 117, 115, 0.4);
}

.btn-social svg {
    transition: transform 0.3s ease;
    color: #ceb25f;
}

.btn-social:hover svg {
    transform: scale(1.1);
}

/* Hide social buttons on mobile */
@media (max-width: 768px) {
    .btn-social {
        display: none;
    }
}

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::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;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.glass-card.large {
    padding: 3rem;
    border-radius: 32px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 40px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(248, 249, 250, 0.85) 0%, rgba(233, 236, 239, 0.75) 100%),
        radial-gradient(circle at 20% 80%, rgba(120, 119, 198, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 59, 48, 0.1) 0%, transparent 50%);
    z-index: -1;
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 1;
    min-height: calc(100vh - 40px);
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #5A4F4D;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    background: linear-gradient(135deg, #5A4F4D 0%, #807573 50%, #6A5F5D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

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

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-visual .glass-card {
    text-align: center;
    max-width: 400px;
}

.smile-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: block;
}

.hero-visual h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #181D23;
}

.hero-visual p {
    color: #6c757d;
    font-size: 1.1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ceb25f;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* Alert Section */
.alert-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.alert-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(128, 117, 115, 0.15);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}


.alert-box h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #5A4F4D;
    margin-bottom: 1rem;
    margin-top: 0;
    text-align: center;
}

.alert-text {
    font-size: 1.05rem;
    color: #6c757d;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-align: center;
}

.alert-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #5A4F4D;
    margin: 2.5rem 0 1.5rem 0;
    text-align: center;
}

.alert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0 2.5rem 0;
}

.alert-item {
    background: rgba(128, 117, 115, 0.05);
    padding: 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(128, 117, 115, 0.1);
}

.alert-item:hover {
    background: rgba(128, 117, 115, 0.08);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    border-color: rgba(128, 117, 115, 0.2);
}

.alert-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(128, 117, 115, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #807573;
    transition: all 0.3s ease;
}

.alert-item:hover .alert-icon {
    background: rgba(128, 117, 115, 0.15);
    transform: scale(1.05);
}

.alert-item p {
    margin: 0;
    font-weight: 500;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.alert-footer {
    font-size: 1.05rem;
    font-weight: 500;
    color: #6c757d;
    margin-top: 2rem;
    text-align: center;
}

/* Doctor Profile Section */
.doctor-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
}

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

.doctor-photo-container {
    position: relative;
}

.doctor-photo {
    width: 350px;
    height: 450px;
    background-size: 100%;
    background-position: center;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-size 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.doctor-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(100% 100% at 50% 0%, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0) 60%),
                linear-gradient(180deg, rgba(128, 117, 115, 0.18), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.doctor-photo:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    background-size: 110%;
}

.doctor-photo:hover::after {
    opacity: 0.35;
}

.doctor-info h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ceb25f;
    margin-bottom: 0.5rem;
}

.doctor-crm {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    font-weight: 500;
}

.doctor-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #5A4F4D;
    margin: 2rem 0 1rem 0;
}

.doctor-credentials {
    list-style: none;
    padding: 0;
}

.doctor-credentials li {
    font-size: 1.1rem;
    color: #495057;
    margin-bottom: 0.8rem;
    padding-left: 0;
}

.doctor-quote {
    margin-top: 2.5rem;
    padding: 1.75rem 2rem;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #5A4F4D;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.doctor-quote::before {
    content: '“';
    position: absolute;
    top: -18px;
    left: 14px;
    font-size: 4rem;
    line-height: 1;
    color: rgba(206, 178, 95, 0.35);
    font-family: serif;
}


/* Methodology Section */
.methodology-section {
    padding: 6rem 0;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.methodology-card {
    padding: 0;
    overflow: hidden;
}

.methodology-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.methodology-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(128, 117, 115, 0.85) 0%, rgba(106, 95, 93, 0.75) 100%);
    mix-blend-mode: multiply;
}

.methodology-card > h3 {
    padding-top: 2rem;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.methodology-card > .methodology-subtitle {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
}

.methodology-card > ul {
    padding-left: 3rem;
    padding-right: 3rem;
    padding-bottom: 2.5rem;
    padding-top: 0.5rem;
}

.methodology-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ceb25f;
    margin-bottom: 0.5rem;
    text-align: center;
}

.methodology-subtitle {
    font-size: 1rem;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 1.5rem;
    text-align: center;
}

.methodology-card ul {
    list-style: none;
    padding: 0;
}

.methodology-card li {
    font-size: 0.95rem;
    color: #495057;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.methodology-card li svg {
    flex-shrink: 0;
    color: #ceb25f;
    margin-top: 0.15rem;
}

.methodology-card li span {
    flex: 1;
}

/* Integrative Medicine Section */
.integrative-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.integrative-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.integrative-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}


.integrative-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #5A4F4D;
    margin-bottom: 0.8rem;
    margin-top: 0;
}

.integrative-card p {
    font-size: 1rem;
    color: #6c757d;
    line-height: 1.5;
}

.integrative-footer {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #5A4F4D;
    margin-top: 3rem;
    font-style: italic;
}

/* Differentials Section */
.differentials-section {
    padding: 6rem 0;
}

.comparison-table {
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.comparison-column {
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
}

.comparison-column.other-clinics {
    background: rgba(200, 200, 200, 0.15);
    border: 2px solid rgba(150, 150, 150, 0.2);
}

.comparison-column.cardio-essence {
    background: rgba(128, 117, 115, 0.1);
    border: 2px solid rgba(128, 117, 115, 0.3);
}

.comparison-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.comparison-column.other-clinics h3 {
    color: #7a7a7a;
}

.comparison-column.cardio-essence h3 {
    color: #5A4F4D;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.comparison-item.other {
    background: rgba(200, 200, 200, 0.08);
    border: 1px solid rgba(150, 150, 150, 0.15);
}

.comparison-item.other svg {
    color: #e57373;
    flex-shrink: 0;
}

.comparison-item.cardio {
    background: rgba(128, 117, 115, 0.05);
    border: 1px solid rgba(128, 117, 115, 0.15);
}

.comparison-item.cardio svg {
    color: #81c784;
    flex-shrink: 0;
}

.comparison-item span {
    font-size: 0.95rem;
    color: #495057;
    line-height: 1.5;
    flex: 1;
}

.comparison-item.cardio:hover {
    background: rgba(128, 117, 115, 0.1);
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(128, 117, 115, 0.15);
}

/* When to Seek Section */
.when-seek-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.when-seek-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5A4F4D;
    text-align: center;
    margin-bottom: 1rem;
}

.when-seek-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #5A4F4D;
    text-align: center;
    margin: 2rem 0 2.5rem 0;
}

.when-seek-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.when-seek-item {
    padding: 1.5rem;
    text-align: center;
}

.when-seek-item p {
    font-size: 1rem;
    color: #495057;
    margin: 0;
    font-weight: 500;
}

.when-seek-footer {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #5A4F4D;
    margin-top: 2rem;
    font-style: italic;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.process-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #ceb25f;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(206, 178, 95, 0.35);
}

.process-step h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ceb25f;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 1.05rem;
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Important Info Section */
.important-info-section {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.important-info-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #5A4F4D;
    text-align: center;
    margin-bottom: 3rem;
}

.important-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.info-box {
    padding: 2.5rem;
}

.info-box h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #5A4F4D;
    margin-bottom: 1.5rem;
}

.info-box ul {
    list-style: none;
    padding: 0;
}

.info-box li {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.info-box li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #807573;
    font-weight: bold;
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(128, 117, 115, 0.15);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.75rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: #5A4F4D;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #807573;
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    flex-shrink: 0;
    color: #807573;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem 2rem;
}

.faq-answer p {
    font-size: 1.05rem;
    color: #495057;
    line-height: 1.7;
    margin: 0;
}

/* Testimonials Updates */
.testimonials {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.disclaimer {
    font-size: 0.95rem;
    color: #6c757d;
    font-style: italic;
    margin-top: 0.5rem;
}

/* Carousel Indicators - Hidden on Desktop */
.carousel-indicators {
    display: none;
}

@media (max-width: 768px) {
    .carousel-indicators {
        display: flex;
    }
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
}

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

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    text-align: center;
}

.service-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: brightness(0.8);
    transition: all 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ceb25f;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6c757d;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 6rem 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ceb25f;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.lead {
    font-size: 1.3rem;
    font-weight: 500;
    color: #495057;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.about-text p {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat.glass-card {
    padding: 1.2rem 1.5rem 1rem 1.5rem;
    border-radius: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    text-align: center;
}

.stat.glass-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.stat h4 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #5A4F4D;
    margin-bottom: 0.3rem;
    margin-top: 0;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #5A4F4D 0%, #807573 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat p {
    color: #495057;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    opacity: 0.8;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Testimonials Section */
.testimonials-section {
    margin-top: 4rem;
    text-align: center;
}

.testimonials-section h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #5A4F4D;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #5A4F4D 0%, #807573 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.testimonials {
    padding: 4rem 0;
}

.testimonials-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

@media (min-width: 769px) {
    .testimonial-track {
        flex-wrap: wrap;
    }
}

.testimonial {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    flex: 1;
    max-width: 300px;
}

.testimonial:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 15px 45px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

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

.stars {
    color: #ffd700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    text-shadow: 0 1px 2px rgba(255, 215, 0, 0.3);
}

.testimonial h4 {
    font-weight: 600;
    color: #5A4F4D;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.testimonial p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #2c3e50;
    margin: 0;
    font-style: italic;
    font-weight: 400;
    flex-grow: 1;
}



/* Responsividade para Testimonials */
@media (max-width: 768px) {
    .testimonial-track {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial {
        padding: 1.5rem 1rem;
        min-height: 250px;
    }
    
    .testimonials-section h3 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .testimonial p {
        font-size: 1rem;
    }
    
    .author-avatar {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}


.about-visual .glass-card h3 {
    font-size: 1.8rem;
    color: #5A4F4D;
    margin-bottom: 1rem;
}

.about-visual .glass-card p {
    font-size: 1.2rem;
    color: #6c757d;
    font-style: italic;
    line-height: 1.6;
}

/* Team Section */
.team {
    padding: 6rem 0;
    background: rgba(255, 255, 255, 0.5);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    justify-items: center;
}

.team-card {
    position: relative;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    width: 100%;
    max-width: 250px;
}

.team-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.team-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover .team-photo {
    filter: blur(15px) brightness(1.2);
    transform: scale(1.05);
}

.team-overlay {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: none;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.team-card:hover .team-overlay {
    opacity: 0;
    transform: translateX(-50%) translateY(20px);
}

.team-info {
    color: white;
    text-align: left;
}

.team-info {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    min-width: 180px;
}

.team-info h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.team-info .specialty {
    margin: 0;
    font-size: 0.8rem;
    color: #666666;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.team-hover-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    text-align: center;
    color: #333;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.team-card:hover .team-hover-content {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.team-hover-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    color: #1a1a1a;
}

.team-hover-content .specialty {
    font-size: 0.65rem;
    color: #007acc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
    text-align: center;
}

.team-hover-content p:not(.specialty) {
    color: #555;
    line-height: 1.4;
    font-size: 0.75rem;
    margin: 0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ceb25f;
    margin-bottom: 1rem;
}

.contact-info > p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-top: 2rem;
    max-width: 900px;
}

.contact-glass-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-glass-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.contact-glass-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(128, 117, 115, 0.15), 0 4px 15px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(128, 117, 115, 0.2);
}

.contact-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

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

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(128, 117, 115, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.contact-glass-box .contact-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.contact-glass-box:hover .contact-icon {
    background: rgba(128, 117, 115, 0.15);
    transform: scale(1.05);
}

.contact-icon svg {
    width: 18px;
    height: 18px;
    color: #ceb25f;
    transition: all 0.3s ease;
}

.contact-glass-box:hover .contact-icon svg {
    transform: scale(1.1);
}

.contact-content h4 {
    color: #5A4F4D;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0;
    text-align: left;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.contact-content p {
    color: #6c757d;
    line-height: 1.3;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 400;
    margin: 0;
    white-space: pre-line;
}

/* Social Links Styles */
.social-links {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6c757d;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 400;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.social-link:hover {
    color: #5A4F4D;
    text-decoration: none;
    transform: translateX(3px);
}

.social-link svg {
    width: 16px;
    height: 16px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    color: #ceb25f;
}

.social-link:hover svg {
    transform: scale(1.1);
    color: #ceb25f;
}

/* Map Styles */
.contact-map {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 100%;
}

.map-container {
    width: 100%;
    max-width: 800px;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.15);
}

.map-container iframe {
    width: 100%;
    flex: 1;
    min-height: 500px;
    border-radius: 20px;
    border: none;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

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

.footer-content p {
    margin: 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 300;
}

.clinic-pro {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.clinic-pro:hover {
    color: #ccc;
    text-decoration: underline;
}

/* Floating CTA Mobile Button - Hidden on Desktop */
.floating-cta-mobile {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hide nav-cta on mobile (Instagram + Button) */
    .nav-cta {
        display: none;
    }
    
    /* Floating CTA Button - Only on Mobile */
    .floating-cta-mobile {
        display: block;
        position: fixed;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        width: auto;
        max-width: 280px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
        font-weight: 500;
        text-align: center;
        text-decoration: none;
        color: white;
        background: #ceb25f;
        border-radius: 50px;
        box-shadow: 0 4px 15px rgba(128, 117, 115, 0.25);
        transition: all 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .floating-cta-mobile:active {
        transform: translateX(-50%) scale(0.95);
        box-shadow: 0 2px 10px rgba(128, 117, 115, 0.3);
    }
    
    /* Hide hero button on mobile */
    .hero-buttons .btn-primary.large {
        display: none;
    }
    
    /* Center hero buttons on mobile */
    .hero-buttons {
        justify-content: center;
    }
    
    /* Add padding to bottom sections to avoid overlap with floating button */
    footer {
        padding-bottom: 100px;
    }
    
    .contact {
        padding-bottom: 120px !important;
    }
    
    .navbar {
        width: calc(100% - 20px);
        top: 10px;
        border-radius: 16px;
    }
    
    .nav-container {
        padding: 0 20px;
        justify-content: center;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-logo {
        margin: 0 auto;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
    }
    
    /* Alert Section Mobile */
    .alert-section {
        padding: 3rem 0;
    }
    
    .alert-box {
        padding: 2rem 1.5rem;
    }
    
    .alert-box h2 {
        font-size: 1.5rem;
    }
    
    .alert-box h3 {
        font-size: 1.1rem;
    }
    
    .alert-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .alert-item {
        padding: 1.2rem;
    }
    
    .alert-item:hover {
        transform: translateY(0);
    }
    
    .alert-icon {
        width: 36px;
        height: 36px;
    }
    
    .alert-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Doctor Section Mobile */
    .doctor-section {
        padding: 3rem 0;
    }
    
    .doctor-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .doctor-photo {
        width: 100%;
        max-width: 300px;
        height: 380px;
        margin: 0 auto;
    }
    
    .doctor-info h2 {
        font-size: 2rem;
    }
    
    /* Methodology Section Mobile */
    .methodology-section {
        padding: 3rem 0;
    }
    
    .methodology-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Integrative Section Mobile */
    .integrative-section {
        padding: 3rem 0;
    }
    
    .integrative-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Differentials Section Mobile */
    .differentials-section {
        padding: 3rem 0;
    }
    
    .comparison-header {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .comparison-item.cardio:hover {
        transform: translateX(0);
    }
    
    /* When to Seek Section Mobile */
    .when-seek-section {
        padding: 3rem 0;
    }
    
    .when-seek-content h2 {
        font-size: 1.8rem;
    }
    
    .when-seek-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Process Section Mobile */
    .process-section {
        padding: 3rem 0;
    }
    
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    
    .process-step:hover {
        transform: translateY(-5px);
    }
    
    /* Important Info Section Mobile */
    .important-info-section {
        padding: 3rem 0;
    }
    
    .important-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* FAQ Section Mobile */
    .faq-section {
        padding: 3rem 0;
    }
    
    .faq-question {
        padding: 1.5rem;
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.5rem 1.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Centralizar títulos na seção de contato */
    .contact .section-header h2,
    .contact .section-header p {
        text-align: center;
        line-height: 1.2;
    }
    
    .section-header h2 {
        font-size: 2rem;
        text-align: center;
        line-height: 1.2;
    }
    
    .section-header p {
        text-align: center;
    }
    
    /* Carrossel de avaliações - mostrar apenas 1 por vez */
    .testimonials-carousel {
        overflow: hidden;
        width: 100%;
        position: relative;
    }
    
    .testimonial-track {
        display: flex;
        transition: transform 0.3s ease;
        touch-action: pan-x;
    }
    
    .testimonial {
        min-width: 100%;
        flex-shrink: 0;
        margin-right: 0;
    }
    
    /* Indicadores do carrossel */
    .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        padding: 0;
    }
    
    .carousel-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .carousel-dot.active {
        background: rgba(255, 255, 255, 0.9);
        transform: scale(1.2);
    }
    
    .glass-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .btn-primary.large,
    .btn-secondary.large {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .glass-card {
        padding: 1rem;
    }
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.service-card,
.team-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Liquid Glass Animation */
@keyframes liquidGlass {
    0% {
        border-radius: 24px 24px 24px 24px;
    }
    25% {
        border-radius: 32px 24px 32px 24px;
    }
    50% {
        border-radius: 24px 32px 24px 32px;
    }
    75% {
        border-radius: 32px 24px 32px 24px;
    }
    100% {
        border-radius: 24px 24px 24px 24px;
    }
}

.glass-card:hover {
    animation: liquidGlass 2s ease-in-out infinite;
}

/* Scroll Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
.footer .container {
    max-width: 100%;
}
