/* Custom CSS for Dr. Barış Kanik Plastic Surgery Website */

:root {
    --rich-black: #0d1821;
    --indigo-dye: #344966;
    --lavender-pink: #e6aace;
    --baby-powder: #f0f4ef;
    --sage: #bfcc94;
    
    /* Updated color mappings */
    --primary-color: var(--indigo-dye);
    --secondary-color: var(--rich-black);
    --accent-color: var(--lavender-pink);
    --text-dark: var(--rich-black);
    --text-light: var(--indigo-dye);
    --bg-light: var(--baby-powder);
    --success-color: var(--sage);
    
    /* Override Bootstrap CSS variables */
    --bs-primary: #344966;
    --bs-primary-rgb: 52, 73, 102;
    --bs-secondary: #0d1821;
    --bs-secondary-rgb: 13, 24, 33;
    --bs-success: #bfcc94;
/* Timeline Styles */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--lavender-pink), var(--indigo-dye));
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 100%;
}

.timeline-item:nth-child(odd) {
    text-align: right;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: calc(50% + 30px);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: calc(50% + 30px);
}

/* Logo positioning - opposite side of content */
.timeline-item:nth-child(odd) .timeline-logo {
    left: calc(50% + 40px);
}

.timeline-item:nth-child(even) .timeline-logo {
    right: calc(50% + 40px);
}

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--lavender-pink);
    border: 4px solid var(--baby-powder);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--indigo-dye);
}

.timeline-logo {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    height: 140px;
    background: var(--baby-powder);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.timeline-logo-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
}

.timeline-card {
    background: var(--baby-powder);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--lavender-pink);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.timeline-year {
    display: inline-block;
    background: var(--indigo-dye);
    color: var(--baby-powder);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-title {
    font-family: 'Cormorant Garamond', serif;
    color: var(--indigo-dye);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-institution {
    color: var(--rich-black);
    margin-bottom: 0;
    font-style: italic;
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        text-align: left !important;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 50px;
        margin-right: 130px;
    }
    
    .timeline-item:nth-child(odd) .timeline-logo,
    .timeline-item:nth-child(even) .timeline-logo {
        right: 10px;
        left: auto;
        width: 110px;
        height: 110px;
    }
    
    .timeline-logo-img {
        width: 75px;
        height: 75px;
    }
    
    .timeline-marker {
        left: 20px;
    }
}

/* Doctor Photo Styling */
.doctor-photo {
    max-width: 100%;
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.doctor-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .doctor-photo {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .doctor-photo {
        height: 300px;
    }
}

/* Experience Cards Styling */
.experience-card {
    background: var(--baby-powder);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--lavender-pink);
    min-height: 260px;
    display: flex;
    flex-direction: column;
}

.experience-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.experience-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.2rem;
}

.experience-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--indigo-dye), var(--lavender-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.experience-period {
    background: var(--sage);
    color: var(--rich-black);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
}

.experience-content {
    flex: 1;
}

.experience-title {
    color: var(--indigo-dye);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.experience-hospital {
    color: var(--rich-black);
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.experience-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Cards Styling */
.why-choose-card {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--lavender-pink);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.why-choose-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.why-choose-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--indigo-dye), var(--lavender-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.8rem;
}

.why-choose-title {
    color: var(--indigo-dye);
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.why-choose-text {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    flex: 1;
}

.why-choose-cta {
    background: linear-gradient(135deg, var(--indigo-dye), var(--rich-black));
    padding: 3rem 2.5rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.why-choose-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.why-choose-cta:hover::before {
    transform: translateX(100%);
}

.why-choose-cta h4 {
    color: white !important;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: 1.8rem;
}

.why-choose-cta .lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.btn-journey {
    background: var(--lavender-pink);
    color: var(--rich-black);
    border: none;
    padding: 1rem 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(230, 170, 206, 0.4);
}

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

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

.btn-journey:hover {
    background: white;
    color: var(--indigo-dye);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 170, 206, 0.6);
}

/* Global Styles */
body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--baby-powder);
    font-weight: 400;
    padding-top: 80px; /* Mobile navbar padding */
}

/* Desktop navbar padding - only apply on larger screens */
@media (min-width: 992px) {
    body {
        padding-top: 140px; /* Add padding to account for navbar with contact info */
    }
}

/* Remove padding for homepage to allow full-height hero */
body.homepage {
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
}

/* Typography enhancements */
.lead {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 1.15rem;
}

.card-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.card-text {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
}

blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
}

/* Special text styles */
.text-elegant {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    letter-spacing: 1px;
}

.text-bold {
    font-family: 'Raleway', sans-serif;
    font-weight: 700;
}

.text-medium {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
}

/* Add some accent elements */
.text-accent {
    color: var(--lavender-pink) !important;
}

.bg-accent {
    background-color: var(--lavender-pink) !important;
}

.text-sage {
    color: var(--sage) !important;
}

.bg-sage {
    background-color: var(--sage) !important;
}

/* Navigation */
.navbar-transparent {
    background: var(--indigo-dye);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

/* Transparent navbar only on homepage */
body.homepage .navbar-transparent {
    background: transparent !important;
}

/* Navbar background when scrolled on homepage */
body.homepage .navbar-transparent.scrolled {
    background: var(--indigo-dye) !important;
}

.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 2.2rem;
    color: var(--baby-powder) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--lavender-pink) !important;
    text-decoration: none;
}

.navbar-logo {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

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

.navbar-contact {
    font-family: 'Raleway', sans-serif;
    font-weight: 500;
    color: var(--baby-powder);
    font-size: 0.9rem;
}

.navbar-contact i {
    color: var(--lavender-pink);
}

.navbar-social .social-link {
    color: var(--baby-powder);
    font-size: 1.4rem;
    transition: color 0.3s ease;
    text-decoration: none;
}

.navbar-social .social-link:hover {
    color: var(--lavender-pink);
}

/* Desktop layout adjustments */
@media (min-width: 992px) {
    .navbar .container {
        position: relative;
    }
    
    .navbar-contact {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .navbar-social {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .navbar-nav {
        margin-top: 0.5rem;
    }
}

/* Navigation */
.navbar-brand {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    font-size: 2.2rem;
    color: var(--baby-powder) !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: 1px;
    text-decoration: none;
}

.navbar-brand:hover {
    color: var(--lavender-pink) !important;
    text-decoration: none;
}

/* Desktop: Stack brand on top, nav below */
@media (min-width: 992px) {
    .navbar .container {
        flex-direction: column;
        align-items: center;
    }
    
    .navbar-brand {
        margin-bottom: 0.5rem;
    }
    
    .navbar-nav {
        flex-direction: row !important;
    }
    
    .navbar-toggler {
        display: none;
    }
    
    .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }
}

.navbar-nav-row .nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--baby-powder) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.navbar-nav-row .nav-link:hover {
    color: var(--lavender-pink) !important;
}

/* Hide mobile brand on desktop */
@media (min-width: 992px) {
    .navbar-brand.d-lg-none {
        display: none !important;
    }
    
    .navbar-toggler {
        display: none !important;
    }
}

/* Transparent navbar only on homepage */
body.homepage .navbar-transparent {
    background: transparent !important;
}

/* Navbar background when scrolled on homepage */
body.homepage .navbar-transparent.scrolled {
    background: var(--indigo-dye) !important;
}

.navbar-transparent.scrolled {
    background: linear-gradient(135deg, var(--indigo-dye) 0%, var(--rich-black) 100%) !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0.5rem 0;
}

.navbar-nav .nav-link {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.3rem;
    padding: 0.5rem 1.5rem !important;
    transition: color 0.3s ease;
    color: var(--baby-powder) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link:hover {
    color: var(--lavender-pink) !important;
}

/* Mobile navbar styling */
@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--indigo-dye);
        margin-top: 1rem;
        padding: 1rem;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }
    
    .navbar-nav {
        text-align: center;
    }
    
    .nav-link {
        padding: 0.5rem 0 !important;
        font-size: 1.1rem;
    }
}

/* Mobile navbar styling */
@media (max-width: 991px) {
    .navbar-brand {
        font-size: 1.5rem;
    }
    
    .navbar-nav {
        margin-top: 1rem;
        padding: 1rem 0;
    }
    
    .nav-link {
        padding: 0.5rem 0 !important;
        font-size: 1.1rem;
    }
}

/* Override any remaining Bootstrap primary colors */
.alert-primary {
    background-color: rgba(52, 73, 102, 0.1) !important;
    border-color: var(--indigo-dye) !important;
    color: var(--indigo-dye) !important;
}

.badge-primary,
.badge.bg-primary {
    background-color: var(--indigo-dye) !important;
    color: var(--baby-powder) !important;
}

.list-group-item-primary {
    background-color: rgba(52, 73, 102, 0.1) !important;
    border-color: var(--indigo-dye) !important;
}

/* Force override any remaining blue colors */
*[class*="primary"] {
    --bs-primary: var(--indigo-dye) !important;
    --bs-primary-rgb: 52, 73, 102 !important;
}

/* Hero Sections */
.hero-section {
    background: linear-gradient(135deg, var(--indigo-dye) 0%, var(--rich-black) 100%);
    min-height: 500px;
    display: flex;
    align-items: center;
}

.hero-section-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 24, 33, 0.7) 0%, rgba(52, 73, 102, 0.5) 100%);
    display: flex;
    align-items: center;
}

.hero-section-image .container {
    position: relative;
    z-index: 2;
}

.doctor-image-placeholder {
    border: 3px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.doctor-image-placeholder:hover {
    transform: scale(1.05);
}

/* Cards */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    background-color: white;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(13, 24, 33, 0.1) !important;
}

/* Success and check elements */
.text-success {
    color: var(--sage) !important;
}

.fas.fa-check,
.fas.fa-check-circle {
    color: var(--sage) !important;
}

/* Warning elements using lavender-pink */
.text-warning {
    color: var(--lavender-pink) !important;
}

/* Service Cards */
.service-card {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
}

.service-card .card-body {
    padding: 2rem;
}

.service-icon {
    transition: transform 0.3s ease;
}

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

/* Buttons */
.btn {
    font-family: 'Raleway', sans-serif;
    border-radius: 6px;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Bootstrap Color Overrides */
.bg-primary {
    background-color: var(--indigo-dye) !important;
}

.text-primary {
    color: var(--indigo-dye) !important;
}

.border-primary {
    border-color: var(--indigo-dye) !important;
}

.btn-primary {
    background: linear-gradient(135deg, var(--indigo-dye) 0%, var(--rich-black) 100%);
    border: none;
    box-shadow: 0 4px 15px rgba(52, 73, 102, 0.3);
    color: var(--baby-powder);
    border-color: var(--indigo-dye);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(52, 73, 102, 0.4);
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--indigo-dye) 100%);
    color: var(--baby-powder);
    border-color: var(--indigo-dye);
}

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

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 73, 102, 0.2);
    background: var(--indigo-dye);
    border-color: var(--indigo-dye);
    color: var(--baby-powder);
}

/* Additional Bootstrap overrides */
.navbar-nav .nav-link {
    color: var(--baby-powder) !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
    color: var(--lavender-pink) !important;
}

/* Modern Service Cards */
.service-card-modern {
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(13, 24, 33, 0.4) 0%,
        rgba(52, 73, 102, 0.5) 100%
    );
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: background 0.3s ease;
}

.service-card-modern:hover .service-overlay {
    background: linear-gradient(
        135deg,
        rgba(13, 24, 33, 0.6) 0%,
        rgba(52, 73, 102, 0.7) 100%
    );
}

.service-content {
    text-align: center;
    color: var(--baby-powder);
    padding: 2rem;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-content {
    transform: translateY(-5px);
}

.service-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--baby-powder);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: rgba(240, 244, 239, 0.9);
}

.service-btn {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.service-card-modern:hover .service-btn {
    transform: translateY(-3px);
}

/* About Preview Section */
.about-preview {
    background: linear-gradient(135deg, var(--baby-powder) 0%, rgba(240, 244, 239, 0.7) 100%);
}

.about-image {
    height: 100%;
    display: flex;
    align-items: stretch;
}

.about-image img {
    border-radius: 8px;
    transition: transform 0.3s ease;
    width: 100%;
    height: 520px;
    object-fit: cover;
}

.about-image img:hover {
    transform: scale(1.02);
}

.about-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 320px;
}

.about-content h2 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--indigo-dye);
}

.stat-item h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    color: var(--lavender-pink);
}

.cv-highlights {
    background: linear-gradient(135deg, var(--indigo-dye), var(--rich-black));
    padding: 2rem 1.5rem;
    border-radius: 0;
    position: relative;
    color: var(--baby-powder);
    box-shadow: 
        0 8px 32px rgba(13, 24, 33, 0.3),
        inset 0 1px 0 rgba(240, 244, 239, 0.1);
}

.cv-highlights .stat-item h4 {
    color: var(--lavender-pink);
    font-size: 2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cv-highlights .stat-item small {
    color: rgba(240, 244, 239, 0.8);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Modern Button Styles */
.btn-modern-primary {
    background: var(--lavender-pink);
    border: none;
    color: var(--rich-black);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 12px 30px;
    border-radius: 0;
    box-shadow: 0 4px 15px rgba(230, 170, 206, 0.3);
    transition: all 0.3s ease;
}

.btn-modern-primary:hover {
    background: var(--baby-powder);
    color: var(--indigo-dye);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 170, 206, 0.4);
}

.btn-modern-secondary {
    background: transparent;
    border: 2px solid var(--baby-powder);
    color: var(--baby-powder);
    font-family: 'Raleway', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 30px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-modern-secondary:hover {
    background: var(--baby-powder);
    color: var(--indigo-dye);
    border-color: var(--baby-powder);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(240, 244, 239, 0.3);
}

/* Timeline */
.timeline-item {
    position: relative;
    padding-left: 1rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 4px;
    height: 100%;
    background: var(--indigo-dye);
    border-radius: 2px;
}

/* Contact Form */
.contact-item {
    transition: transform 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
}

/* Map Placeholder */
.map-placeholder {
    background: linear-gradient(135deg, var(--indigo-dye) 0%, var(--rich-black) 100%);
    border: 2px dashed rgba(240, 244, 239, 0.3);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--rich-black) 0%, var(--indigo-dye) 100%);
}

.social-links a {
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-links a:hover {
    color: var(--lavender-pink) !important;
    transform: translateY(-2px);
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero-section {
        min-height: 400px;
        text-align: center;
    }
    
    .hero-section-image {
        min-height: 100vh;
        background-position: center;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .display-5 {
        font-size: 1.8rem;
    }
    
    .doctor-image-placeholder {
        width: 200px !important;
        height: 200px !important;
        margin-bottom: 2rem;
    }
    
    .service-card .card-body {
        padding: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .btn-lg {
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
    }
    
    .service-details .col-4 {
        margin-bottom: 1rem;
    }
}

/* Accessibility */
.btn:focus,
.form-control:focus,
.form-select:focus {
    box-shadow: 0 0 0 0.2rem rgba(52, 73, 102, 0.25);
    border-color: var(--indigo-dye);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--baby-powder);
}

::-webkit-scrollbar-thumb {
    background: var(--indigo-dye);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rich-black);
}

/* Print Styles */
@media print {
    .navbar,
    footer,
    .btn,
    .social-links {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .card {
        border: 1px solid #ddd !important;
        box-shadow: none !important;
    }
}
}