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

body {
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafafa;
    overflow-x: hidden;
}

/* Color Variables */
:root {
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --secondary: #10b981;
    --accent: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}



/* Floating Navigation */
.floating-nav {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-dots {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.nav-dot.active {
    background: var(--primary);
    transform: scale(1.5);
}

.nav-dot:hover {
    background: var(--primary);
    transform: scale(1.2);
}

.dot-label {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.nav-dot:hover .dot-label {
    opacity: 1;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    position: fixed;
    top: 2rem;
    right: 2rem;
    z-index: 1001;
    display: none;
    cursor: pointer;
}

.menu-icon {
    width: 30px;
    height: 20px;
    position: relative;
}

.menu-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--primary);
    position: absolute;
    transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) { top: 0; }
.menu-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-icon span:nth-child(3) { bottom: 0; }



/* Main Content */
.main-content {
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 2rem;
    background: var(--bg-light);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.geometric-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 5%;
    background: var(--gradient-secondary);
    animation-delay: 2s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 60%;
    right: 20%;
    background: var(--gradient-accent);
    animation-delay: 4s;
}

.shape-4 {
    width: 80px;
    height: 80px;
    top: 20%;
    left: 20%;
    animation-delay: 1s;
}

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

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

.hero-text {
    padding-right: 2rem;
}

.name-badge {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    transform: translateX(-20px);
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.title-line {
    display: block;
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s ease forwards 0.4s;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s ease forwards 0.6s;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-cta {
    margin-top: 2rem;
    transform: translateX(-50px);
    opacity: 0;
    animation: slideInLeft 1s ease forwards 0.8s;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-lg);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    color: white;
}

.cta-button i {
    font-size: 1.25rem;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    background: white;
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(50px);
    opacity: 0;
    animation: floatUp 1s ease forwards;
    min-width: 120px;
    min-height: 100px;
}

.card i {
    font-size: 2rem;
    color: var(--primary);
}

.card span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
}

.card-1 {
    top: 12%;
    left: 8%;
    animation-delay: 0.8s;
}

.card-2 {
    top: 48%;
    right: 15%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 22%;
    left: 20%;
    animation-delay: 1.2s;
}

.card-4 {
    top: 20%;
    left: 70%;
    animation-delay: 1.4s;
}

@keyframes slideInLeft {
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes floatUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: var(--primary);
    border-radius: 1px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Container */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

/* About Section */
.about-section {
    background: white;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
    z-index: 1;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

.about-section .floating-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 4s ease-in-out infinite;
    z-index: 1;
}

.about-section .floating-dot:nth-child(1) {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.about-section .floating-dot:nth-child(2) {
    bottom: 30%;
    right: 15%;
    animation-delay: 2s;
    width: 15px;
    height: 15px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 2;
    margin-top: 2rem;
}

.about-photo-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.about-photo {
    text-align: center;
    position: relative;
}

.about-photo::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #10b981);
    border-radius: 25px;
    z-index: -1;
    opacity: 0.1;
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.about-photo:hover::before {
    transform: rotate(0deg);
    opacity: 0.2;
}

.profile-photo {
    width: 280px;
    height: 350px;
    border-radius: 25px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 6px solid white;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.profile-photo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}



.certifications {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    width: 100%;
    max-width: 320px;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.9rem 1rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.cert-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
}

.cert-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    flex-shrink: 0;
}

.cert-info h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.cert-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

.about-content-section {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

/* Uzman profili — sekmeli özgeçmiş */
.profile-cv-block {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.profile-tablist {
    display: inline-flex;
    align-self: flex-start;
    padding: 0.35rem;
    gap: 0.25rem;
    background: var(--bg-light);
    border-radius: 14px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.06);
}

.profile-tab {
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 0.65rem 1.35rem;
    border-radius: 11px;
    background: transparent;
    color: var(--text-light);
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.profile-tab:hover {
    color: var(--text-dark);
}

.profile-tab:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.profile-tab.active {
    background: white;
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.profile-tab-panels {
    position: relative;
}

.profile-tab-panel {
    animation: profilePanelIn 0.35s ease;
}

.profile-tab-panel[hidden] {
    display: none !important;
}

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

.compact-timeline .timeline-title {
    display: none;
}

.compact-timeline .timeline-item {
    margin-bottom: 1rem;
}

.compact-timeline .timeline-content h4 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.compact-timeline .timeline-content p {
    font-size: 0.9375rem;
    line-height: 1.5;
}

.text-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.text-content p:last-child {
    margin-bottom: 0;
}

.experience-timeline {
    position: relative;
}

.timeline-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -1rem;
    top: 0.5rem;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: var(--shadow);
}

.timeline-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin: 0;
}

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

/* Testimonials Section */
.testimonials-section {
    background: white;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 0 2rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    flex-shrink: 0;
    flex: 0 0 calc(50% - 1rem); /* Two cards with 2rem gap */
}

.testimonial-card::before {
    content: '\201C'; /* Left double quotation mark */
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.3;
    font-family: serif;
}

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

.testimonial-content {
    position: relative;
    z-index: 1;
}

.stars {
    display: flex;
    color: var(--accent);
    margin-bottom: 1rem;
}

.stars i {
    margin-right: 0.25rem;
}

.testimonial-content p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.author-info h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.author-info span {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.slider-btn:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.slider-btn:disabled {
    background: var(--border);
    cursor: not-allowed;
    opacity: 0.7;
}

.slider-dots {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
    justify-content: center;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--primary);
    transform: scale(1.2);
}

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

.service-item {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 280px;
}

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

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

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

/* .service-item.large {
    grid-row: span 2;
} */

.service-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.75rem;
}

.service-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.6;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.service-features span {
    background: var(--bg-light);
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
}

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

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

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

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

.faq-answer p:first-of-type {
    padding-top: 0.25rem;
}

.faq-answer ul {
    padding: 0 1.5rem 1.25rem 2.5rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.65;
}

.faq-answer ul li {
    margin-bottom: 0.35rem;
}

.faq-answer strong {
    color: var(--text-dark);
}

/* Specialties Section */
.specialties-section {
    background: white;
}

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

.specialty-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.specialty-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.specialty-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.specialty-item:hover {
    background: var(--primary);
    color: white;
    transform: translateX(10px);
}

.specialty-item:hover i {
    color: white;
}

.specialty-item i {
    font-size: 1.25rem;
    color: var(--primary);
    width: 24px;
    transition: color 0.3s ease;
}

.specialty-item span {
    font-weight: 500;
    color: inherit;
}

/* Contact Section */
.contact-section {
    background: var(--bg-light);
}

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

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    height: fit-content;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.contact-text h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.address-highlight-blue {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1em;
    display: block;
    margin-bottom: 0.25rem;
}

.address-highlight-orange {
    color: var(--accent);
    font-weight: 500;
    display: block;
    margin-top: 0.25rem;
}

.contact-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.contact-map {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: fit-content;
}

.map-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.map-title {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

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

.map-title h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.map-info {
    display: flex;
    align-items: center;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 500;
}

.location-badge i {
    font-size: 1rem;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    background: var(--primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -100%) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -100%) scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -100%) scale(1);
        opacity: 1;
    }
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.map-footer {
    padding: 1.5rem 2rem 2rem;
    background: var(--bg-light);
}

.map-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.map-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.map-action-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.map-action-btn i {
    font-size: 1rem;
}

.contact-form-container {
    display: flex;
    justify-content: center;
}

.form-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    max-width: 500px;
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

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

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

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: var(--primary);
    background: white;
    padding: 0 0.25rem;
}

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

.submit-btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--accent);
}

.footer-brand p {
    color: #9ca3af;
    line-height: 1.6;
}

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

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .floating-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    

    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .card {
        min-width: 100px;
        min-height: 80px;
        padding: 1rem;
    }
    
    .card-1 {
        top: 8%;
        left: 8%;
    }
    
    .card-2 {
        top: 45%;
        right: 12%;
    }
    
    .card-3 {
        bottom: 20%;
        left: 15%;
    }
    
    .card-4 {
        top: 18%;
        left: 68%;
    }
    
    .hero-text {
        padding-right: 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-photo-section {
        order: -1;
    }
    
    .profile-photo {
        width: 240px;
        height: 300px;
    }
    
    .certifications {
        max-width: 400px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider {
        padding: 0 1rem;
    }
    
    .testimonial-card {
        flex: 0 0 calc(100% - 2rem); /* One card per view on smaller screens */
    }
    
    .slider-controls {
        gap: 1rem;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info-card {
        padding: 2rem;
    }
    
    .map-header {
        padding: 1.5rem 1.5rem 1rem;
    }
    
    .map-footer {
        padding: 1rem 1.5rem 1.5rem;
    }
    
    .map-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .footer-links {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .card {
        min-width: 80px;
        min-height: 70px;
        padding: 0.75rem;
        font-size: 0.875rem;
    }
    
    .card-1 {
        top: 6%;
        left: 8%;
    }
    
    .card-2 {
        top: 38%;
        right: 10%;
    }
    
    .card-3 {
        bottom: 18%;
        left: 12%;
    }
    
    .card-4 {
        top: 16%;
        left: 60%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-masonry {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: auto;
    }
    
    .service-item {
        padding: 2rem;
        min-height: 250px;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-content h3 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .specialties-grid {
        grid-template-columns: 1fr;
    }
    
    .section-container {
        padding: 4rem 1rem;
    }
    
    .hero-section {
        padding: 1rem;
    }
    
    .profile-photo {
        width: 200px;
        height: 250px;
    }
    
    .about-photo::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }
    
    .certifications {
        max-width: 100%;
    }
    
    .about-content-section {
        gap: 2rem;
    }

    .profile-tablist {
        align-self: stretch;
        width: 100%;
        flex-wrap: wrap;
        justify-content: stretch;
    }

    .profile-tab {
        flex: 1;
        min-width: 0;
        text-align: center;
        padding: 0.6rem 0.65rem;
        font-size: 0.8125rem;
    }
    
    .timeline-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-details {
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .map-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .map-title h3 {
        font-size: 1.125rem;
    }
    
    .map-footer {
        padding: 0.75rem 1rem 1rem;
    }
    
    .map-action-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .services-masonry {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
    
    .form-card {
        padding: 2rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    animation: bounce 2s infinite;
}

.whatsapp-button a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #25d366;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-button a:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-button i {
    font-size: 1.5rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile responsive for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 1rem;
        right: 1rem;
    }
    
    .whatsapp-button a {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }
    
    .whatsapp-button i {
        font-size: 1.25rem;
    }
    
    .whatsapp-button span {
        display: none;
    }
}

/* Clinic Photos Section */
.clinic-photos-section {
    padding: 5rem 0;
    background: var(--bg-white);
    position: relative;
}

.clinic-photos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border), transparent);
}

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

.photo-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    background: var(--bg-light);
    min-height: 250px;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.clinic-photo {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1.5rem 1rem 1rem;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

.photo-item:hover .clinic-photo {
    transform: scale(1.05);
}

.photo-overlay span {
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    display: block;
}

/* Mobile responsive for clinic photos */
@media (max-width: 768px) {
    .clinic-photos-section {
        padding: 3rem 0;
    }
    
    .photos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }
    
    .photo-item {
        min-height: 200px;
    }
    
    .clinic-photo {
        height: 200px;
    }
    
    .photo-overlay {
        padding: 1rem 0.75rem 0.75rem;
    }
    
    .photo-overlay span {
        font-size: 1rem;
    }
}
