/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Language Selector */
.language-selector {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 1001;
}

.language-dropdown {
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 6px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    color: #495057;
}

.language-btn:hover {
    background: #e9ecef;
    border-color: #00b4d8;
}

.language-btn img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.language-btn i.fa-chevron-down {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.language-dropdown:hover .language-btn i.fa-chevron-down {
    transform: rotate(180deg);
}

.language-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    min-width: 140px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    margin-top: 5px;
}

.language-dropdown:hover .language-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 15px;
    text-decoration: none;
    color: #495057;
    transition: all 0.3s ease;
    font-size: 14px;
}

.language-option:hover {
    background: #f8f9fa;
    color: #00b4d8;
}

.language-option.active {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: #fff;
}

.language-option.active:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    color: #fff;
}

.language-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.header-links {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
}

.header-links a {
    color: #00b4d8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.header-links a:hover {
    color: #0077b6;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    white-space: nowrap;
    min-height: 60px;
}

.nav-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #00b4d8;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-brand .logo:hover {
    color: #0077b6;
    transform: scale(1.05);
}

.nav-brand .logo:hover i {
    animation: pulse 0.6s ease-in-out;
}

.nav-brand .logo i {
    font-size: 28px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin-left: 30px;
    flex-shrink: 0;
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu a:hover {
    color: #00b4d8;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: #333;
    border-radius: 0;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #00b4d8;
}

/* Dropdown Submenu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu-content {
    position: absolute;
    top: 0;
    left: 100%;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s;
    list-style: none;
}

.dropdown-submenu:hover .dropdown-submenu-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu-content li {
    list-style: none;
}

.dropdown-submenu-content a {
    padding: 10px 20px;
    display: block;
    color: #333;
    border-radius: 0;
}

.dropdown-submenu-content a:hover {
    background: #f8f9fa;
    color: #00b4d8;
}

.dropdown-submenu > a i.fa-chevron-right {
    margin-left: auto;
    font-size: 10px;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 30px;
    flex-shrink: 0;
}

.nav-contact .phone,
.nav-contact .location {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #00b4d8;
    font-weight: 500;
    white-space: nowrap;
}

.nav-contact i {
    background: #f8f9fa;
    padding: 8px;
    border-radius: 50%;
    font-size: 14px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 120px 0 80px;
    margin-top: 0;
    display: flex;
    align-items: center;
    padding-top: 120px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.hero-text {
    flex: 1;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #00b4d8, #0077b6, #023e8a);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 10px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

.hero-badge i {
    font-size: 16px;
    color: #ffffff;
}

/* Hero Title */
.hero-title {
    margin-bottom: 25px;
}

.title-highlight {
    display: block;
    font-size: 60px;
    font-weight: 900;
    line-height: 1.1;
    color: #ffffff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.title-subtitle {
    display: block;
    font-size: 30px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Description */
.hero-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.hero-features .feature-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.hero-features .feature-item i {
    font-size: 14px;
    color: #ffffff;
}

.hero-features .feature-item span {
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    color: #ffffff;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: center;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #00b4d8, #0077b6, #023e8a);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.5);
    background: linear-gradient(135deg, #0077b6, #023e8a, #001d3d);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #00b4d8;
    border: 2px solid #00b4d8;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.5);
}



/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #2b80bd;
    border-color: #39abd4;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.5);
    color: #fff;
}


/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdfdff 0%, #f9fbff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #00b4d8;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

/* İmplant Tedavileri için özel 3'lü grid */
.implants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 20px auto;
}

.service-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border: 1px solid #f1f3f4;
    margin-bottom: 20px;
}

.service-card:hover {
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.3);
    transform: translateY(-8px);
    border-color: #00b4d8;
}

.service-card:hover h3 {
    color: #1a252f;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.service-card:hover p {
    color: #0077b6;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.4);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00b4d8, #0077b6, #023e8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 32px;
    color: #fff;
}

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    color: #00b4d8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.service-link {
    color: #00b4d8;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.service-link:hover {
    gap: 12px;
    color: #0077b6;
    text-shadow: 0 2px 4px rgba(0, 119, 182, 0.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-text > p {
    font-size: 18px;
    color: #00b4d8;
    margin-bottom: 30px;
    line-height: 1.6;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 5px 0;
}

.feature-item i {
    color: #28a745;
    font-size: 20px;
}

.feature-item span {
    font-size: 16px;
    color: #333;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdfdff 0%, #f9fbff 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    box-shadow: 0 20px 40px rgba(0, 180, 216, 0.3);
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Instagram Section */
.instagram {
    padding: 80px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.instagram-post {
    position: relative;
    aspect-ratio: 1;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.instagram-post:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.instagram-post img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instagram-post:hover img {
    transform: scale(1.1);
}

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(225, 48, 108, 0.8), rgba(255, 204, 119, 0.8));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: white;
}

.instagram-post:hover .instagram-overlay {
    opacity: 1;
}

.instagram-overlay i {
    font-size: 48px;
    margin-bottom: 10px;
}

.instagram-overlay span {
    font-size: 16px;
    font-weight: 600;
}

.instagram-cta {
    text-align: center;
}

/* Instagram Loading */
.instagram-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #00b4d8;
}

.instagram-loading i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #00b4d8;
}

.instagram-loading p {
    font-size: 18px;
    font-weight: 500;
}

/* Reviews Section */
.reviews {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 20px;
}

.review-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
}

.review-card:hover {
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.3);
    transform: translateY(-5px);
    border-color: #00b4d8;
}

.review-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.review-stars i {
    color: #ffc107;
    font-size: 16px;
}

.review-text {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
}


.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h4 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.author-info span {
    color: #00b4d8;
    font-size: 14px;
    font-weight: 500;
}

/* Add Review Section */
.add-review-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    border: 2px dashed #00b4d8;
}

.add-review-section h3 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.add-review-section p {
    color: #00b4d8;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.review-platforms {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
}

.google-review {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    border-color: #00b4d8;
}

.google-review:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    border-color: #0077b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

.facebook-review {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    border-color: #00b4d8;
}

.facebook-review:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    border-color: #0077b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
}

.review-btn i {
    font-size: 18px;
}

/* Doctors Section */
.doctors {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdfdff 0%, #f9fbff 100%);
}

/* Doctors Carousel */
.doctors-carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.doctors-container {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    padding: 30px 20px;
    max-width: 975px;
}

.doctors-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 25px;
}

.doctor-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
    flex: 0 0 300px;
    width: 300px;
}

.doctor-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.doctor-card:hover h3 {
    color: #1a252f;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.doctor-card:hover .doctor-title,
.doctor-card:hover .doctor-experience {
    color: #0077b6;
}

.doctor-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.doctor-card:hover .doctor-image img {
    transform: scale(1.05);
}

.doctor-info {
    padding: 20px 18px;
    margin-top: 8px;
}

.doctor-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.doctor-title {
    color: #00b4d8;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
}

.doctor-experience {
    color: #00b4d8;
    margin-bottom: 15px;
    font-size: 13px;
}

.doctor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.doctor-specialties span {
    background: #f8f9fa;
    color: #00b4d8;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 11px;
    font-weight: 500;
    border: 1px solid rgba(0, 180, 216, 0.2);
}

/* Carousel Buttons */
.carousel-btn {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 180, 216, 0.4);
    font-size: 18px;
}

.carousel-btn:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.5);
}

.carousel-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    transform: scale(1.2);
}

.indicator:hover {
    background: #00b4d8;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

.contact-2x2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.contact-4x1 {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.contact-5x1 {
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* WhatsApp Styles */
.whatsapp-icon {
    background: linear-gradient(135deg, #00b4d8, #0077b6, #023e8a) !important;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #00b4d8, #0077b6) !important;
    color: white !important;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a) !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

/* WhatsApp Chat Widget */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 350px;
    max-height: 500px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    overflow: hidden;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.whatsapp-chat-header {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-chat-header:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
}

.whatsapp-avatar {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.whatsapp-info {
    flex: 1;
}

.whatsapp-name {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 2px;
}

.whatsapp-status {
    font-size: 13px;
    opacity: 0.9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.whatsapp-status::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #ffffff;
    border-radius: 50%;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-toggle {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.whatsapp-chat-widget.collapsed .whatsapp-toggle {
    transform: rotate(180deg);
}

.whatsapp-chat-body {
    max-height: 400px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.whatsapp-chat-widget.collapsed .whatsapp-chat-body {
    max-height: 0;
}

.whatsapp-messages {
    padding: 20px;
    background: #ECE5DD;
    min-height: 280px;
    max-height: 280px;
    overflow-y: auto;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(120, 119, 198, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(120, 119, 198, 0.03) 0%, transparent 50%);
}

/* Custom scrollbar for WhatsApp messages */
.whatsapp-messages::-webkit-scrollbar {
    width: 6px;
}

.whatsapp-messages::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 3px;
}

.whatsapp-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 3px;
}

.whatsapp-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.5);
}

.whatsapp-message {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.whatsapp-message.received {
    align-items: flex-start;
}

.whatsapp-message.sent {
    align-items: flex-end;
}

.message-content {
    background: white;
    padding: 12px 16px;
    border-radius: 18px;
    max-width: 80%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    line-height: 1.4;
    position: relative;
}

.whatsapp-message.received .message-content {
    background: white;
    border-bottom-left-radius: 4px;
}

.whatsapp-message.sent .message-content {
    background: #DCF8C6;
    border-bottom-right-radius: 4px;
}

.message-time {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
    padding: 0 8px;
}

.whatsapp-quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
}

.quick-reply {
    background: white;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    color: #333;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.quick-reply:hover {
    background: #F5F5F5;
    border-color: #00b4d8;
    box-shadow: 0 2px 8px rgba(0, 180, 216, 0.2);
}

.whatsapp-input-area {
    padding: 15px 20px;
    background: white;
    border-top: 1px solid #E0E0E0;
    display: flex;
    gap: 10px;
    align-items: center;
}

.whatsapp-input-area input {
    flex: 1;
    border: 1px solid #E0E0E0;
    border-radius: 20px;
    padding: 10px 16px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s ease;
}

.whatsapp-input-area input:focus {
    border-color: #00b4d8;
}

.whatsapp-send-btn {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.whatsapp-send-btn:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-chat-widget {
        width: 320px;
        right: 15px;
        bottom: 15px;
    }
    
    .whatsapp-messages {
        min-height: 250px;
    }
}

@media (max-width: 480px) {
    .whatsapp-chat-widget {
        width: calc(100vw - 30px);
        right: 15px;
        left: 15px;
        max-width: 350px;
    }
}

/* Animation for new messages */
@keyframes messageSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-message.new {
    animation: messageSlideIn 0.3s ease;
}

/* Pulse animation for the widget */
@keyframes widgetPulse {
    0% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
    50% {
        box-shadow: 0 8px 30px rgba(0, 180, 216, 0.4);
    }
    100% {
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    }
}

.whatsapp-chat-widget:not(.collapsed) {
    animation: widgetPulse 3s infinite;
}

/* Appointment Section */
.appointment-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    margin: 40px 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.appointment-section h3 {
    color: #2c3e50;
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.appointment-section h3 i {
    color: #00b4d8;
}

.appointment-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.appointment-form .form-group {
    margin-bottom: 0;
}

.appointment-form input,
.appointment-form select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s;
    background: #fff;
}

.appointment-form input:focus,
.appointment-form select:focus {
    outline: none;
    border-color: #00b4d8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

.btn-full {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 600;
}

/* Appointment Steps */
.appointment-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    min-width: 120px;
}

.step.active {
    background: rgba(0, 180, 216, 0.15);
    color: #ffffff;
}

.step-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e9ecef;
    color: #00b4d8;
    font-size: 20px;
    transition: all 0.3s ease;
}

.step.active .step-icon {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
}

.step span {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.step-arrow {
    color: #dee2e6;
    font-size: 16px;
    margin: 0 10px;
}

.step-arrow i {
    transition: color 0.3s ease;
}

.step.active + .step-arrow i {
    color: #00b4d8;
}

/* Appointment Step Content */
.appointment-step-content {
    display: none;
    animation: fadeInUp 0.3s ease;
}

.appointment-step-content.active {
    display: block;
}

.appointment-step-content h4 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
}

.form-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 25px;
    flex-wrap: wrap;
}

/* Calendar Styles */
.calendar-container {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.calendar-nav {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.calendar-nav:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
}

.calendar-title {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.calendar-day {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 15px 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.calendar-day:hover {
    border-color: #00b4d8;
    background: #f8f9fa;
}

.calendar-day.selected {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    border-color: #00b4d8;
}

.calendar-day.disabled {
    background: #f8f9fa;
    color: #00b4d8;
    cursor: not-allowed;
    opacity: 0.5;
}

.calendar-day.disabled:hover {
    border-color: #e9ecef;
    background: #f8f9fa;
}

.day-number {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 2px;
}

.day-name {
    font-size: 12px;
    opacity: 0.8;
}

.time-slots {
    background: white;
    border-radius: 10px;
    padding: 20px;
}

.time-slots-info {
    text-align: center;
    color: #00b4d8;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.time-slot {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.time-slot:hover {
    border-color: #00b4d8;
    background: #f8f9fa;
}

.time-slot.selected {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    border-color: #00b4d8;
}

.time-slot.unavailable {
    background: #f8f9fa;
    color: #00b4d8;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Appointment Summary */
.appointment-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}

.summary-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid #00b4d8;
}

.summary-card h5 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.summary-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.summary-item .label {
    font-weight: 500;
    color: #00b4d8;
}

.summary-item .value {
    font-weight: 600;
    color: #2c3e50;
}

.appointment-info {
    background: #e3f2fd;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 25px;
}

.info-box {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.info-box i {
    color: #00b4d8;
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-box ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.info-box li {
    margin-bottom: 5px;
    color: #2c3e50;
}

.contact-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    aspect-ratio: 2/3;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 20px;
}

.contact-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.contact-card:hover h3 {
    color: #1a252f;
    text-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.contact-card:hover p {
    color: #0077b6;
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00b4d8, #0077b6, #023e8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 28px;
}

.contact-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.contact-card p {
    color: #00b4d8;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 16px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.emergency-note {
    margin-top: 15px;
    padding: 10px;
    background: #fff3cd;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.emergency-note small {
    color: #856404;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

.emergency-note i {
    color: #ffc107;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00b4d8;
    box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #494949;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-logo i {
    color: #00b4d8;
}

.footer-section p {
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}

.social-links a:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.3);
}

.footer-section h4 {
    color: #fff;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: #00b4d8;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #bbb;
}

.footer-contact i {
    color: #00b4d8;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    color: #bbb;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        display: none;
    }
    
    .navbar {
        padding: 10px 0;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-contact {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        padding: 100px 0 60px;
        margin-top: 0;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 32px;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .search-form input,
    .location-select {
        min-width: 100%;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .feature-badge {
        position: static;
        margin: 10px 0;
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* İmplant bölümü mobil responsive */
    .implants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 20px;
    }
    
    .stat-item {
        min-width: 100px;
        padding: 15px;
    }
    
    /* Hero Decorations Mobile */
    .tooth-shape {
        font-size: 40px;
    }
    
    .tooth-2 {
        font-size: 30px;
    }
    
    .tooth-3 {
        font-size: 25px;
    }
    
    .circle-1 {
        width: 80px;
        height: 80px;
    }
    
    .circle-2 {
        width: 60px;
        height: 60px;
    }
    
    .circle-3 {
        width: 40px;
        height: 40px;
    }
    
    .plus-shape {
        font-size: 30px;
    }
    
    .plus-2 {
        font-size: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Reviews Mobile */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .review-card {
        padding: 25px 20px;
    }
    
    .review-text {
        font-size: 15px;
    }
    
    .author-info h4 {
        font-size: 16px;
    }
    
    /* Add Review Section Mobile */
    .add-review-section {
        margin-top: 40px;
        padding: 30px 20px;
    }
    
    .add-review-section h3 {
        font-size: 20px;
    }
    
    .add-review-section p {
        font-size: 14px;
    }
    
    .review-platforms {
        flex-direction: column;
        gap: 15px;
    }
    
    .review-btn {
        min-width: 100%;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Doctors Carousel Mobile */
    .doctors-carousel {
        flex-direction: column;
        gap: 15px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .doctor-card {
        flex: 0 0 100%;
        min-width: 280px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-5x1 {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .about-text h2 {
        font-size: 28px;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    /* İmplant bölümü küçük mobil cihazlar */
    .implants-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.about-text,
.about-image {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
}

/* Social Media Sidebar */
.social-sidebar {
    position: fixed;
    left: -250px;
    top: 50%;
    transform: translateY(-50%);
    width: 250px;
    background: white;
    border-radius: 0 15px 15px 0;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    transition: all 0.3s ease;
    overflow: visible;
}

.social-sidebar.open {
    left: 0;
}

.social-toggle {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 80px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    border-radius: 0 10px 10px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    font-size: 16px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);
}

.social-toggle:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    transform: translateY(-50%);
}

.social-toggle i {
    transition: transform 0.3s ease;
}

.social-sidebar.open .social-toggle i {
    transform: rotate(180deg);
}

.social-links-sidebar {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-weight: 500;
}

.social-link:hover {
    background: #f8f9fa;
    border-left-color: currentColor;
}

.social-link:hover span {
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
    font-weight: 700;
}

.social-link i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border-radius: 50%;
    color: white;
    flex-shrink: 0;
}

.social-link.instagram i {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.facebook i {
    background: #1877f2;
}

.social-link.youtube i {
    background: #ff0000;
}

.social-link.whatsapp i {
    background: #25d366;
}

.social-link span {
    font-size: 14px;
    font-weight: 600;
}

.social-link.instagram:hover {
    color: #e6683c;
    transform: translateX(5px);
}

.social-link.facebook:hover {
    color: #1877f2;
    transform: translateX(5px);
}

.social-link.youtube:hover {
    color: #ff0000;
    transform: translateX(5px);
}

.social-link.whatsapp:hover {
    color: #25d366;
    transform: translateX(5px);
}

/* Mobile responsive for social sidebar */
@media (max-width: 768px) {
    .social-sidebar {
        width: 200px;
        left: -150px;
    }
    
    .social-toggle {
        right: -35px;
        width: 35px;
        height: 70px;
        font-size: 14px;
    }
    
    .social-link {
        padding: 12px 15px;
        font-size: 13px;
    }
    
    .social-link i {
        width: 20px;
        height: 20px;
        font-size: 16px;
    }
}

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    margin-top: 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(65, 162, 181, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(65, 162, 181, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.contact-form-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: fit-content;
}

.contact-info h3 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info > p {
    color: #00b4d8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    color: #2c3e50;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item p {
    color: #00b4d8;
    font-size: 14px;
    margin: 0;
}

.whatsapp-form {
    background: white;
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid #e9ecef;
    position: relative;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #2c3e50;
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

.form-group label::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #00b4d8, #0077b6);
    border-radius: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 20px;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.4s ease;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00b4d8;
    box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.2), 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 1);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: #00b4d8;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin-bottom: 30px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e9ecef;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    border-color: #00b4d8;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 600;
}

/* WhatsApp Button Styles */
.btn-whatsapp {
    background: linear-gradient(135deg, #00b4d8, #0077b6, #023e8a);
    color: white;
    border: none;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-whatsapp::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-whatsapp:hover::before {
    left: 100%;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a, #001d3d);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 180, 216, 0.5);
}

.btn-whatsapp:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.btn-whatsapp i {
    font-size: 22px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    animation: floatBounce 3s ease-in-out infinite;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00b4d8, #0077b6, #023e8a);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.whatsapp-float a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-float a:hover::before {
    opacity: 1;
}

.whatsapp-float a:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 180, 216, 0.5);
}

.whatsapp-float i {
    font-size: 28px;
    animation: wiggle 2s ease-in-out infinite;
}

@keyframes floatBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes wiggle {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

/* Mobile responsive for WhatsApp float */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float a {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-float i {
        font-size: 24px;
    }
}

/* Mobile Responsive for Contact Form */
@media (max-width: 768px) {
    .contact-form-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-hero {
        margin-top: 0;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }
    
    .contact-details {
        gap: 20px;
    }
    
    .contact-item {
        gap: 15px;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #e9ecef 75%, #dee2e6 100%);
    padding: 80px 0 50px;
    margin-top: 0;
    text-align: center;
}

.contact-hero h1 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 20px;
    color: #00b4d8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b4d8, #0077b6, #023e8a, #00b4d8);
    background-size: 200% 100%;
    animation: gradientShift 3s ease-in-out infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.form-header h2 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.form-header p {
    color: #00b4d8;
    font-size: 18px;
    margin: 0;
    font-weight: 500;
    line-height: 1.6;
}

.benefits-section {
    margin-top: 40px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #00b4d8;
}

.benefits-section h4 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #333;
}

.benefits-list i {
    color: #28a745;
    font-size: 14px;
}

.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(180deg, #fdfdff 0%, #f9fbff 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.advantage-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00b4d8, #0077b6, #023e8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.advantage-card h4 {
    color: #2c3e50;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #00b4d8;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Mobile Responsive for Contact Page */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 60px;
        margin-top: 0;
    }
    
    .contact-hero h1 {
        font-size: 32px;
    }
    
    .contact-hero p {
        font-size: 16px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .advantage-card {
        padding: 25px 20px;
    }
    
    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}

/* Fixed Quote Button */
.fixed-quote-button {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    animation: floatBounce 3s ease-in-out infinite;
}

.quote-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00b4d8, #0077b6, #023e8a);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.quote-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.quote-btn:hover::before {
    left: 100%;
}

.quote-btn:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a, #001d3d);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 180, 216, 0.5);
}

.quote-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.4);
}

.quote-btn i {
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
}

.quote-btn span {
    font-weight: 600;
    white-space: nowrap;
}

/* Mobile responsive for fixed quote button */
@media (max-width: 768px) {
    .fixed-quote-button {
        bottom: 20px;
        left: 20px;
    }
    
    .quote-btn {
        padding: 12px 20px;
        font-size: 14px;
        gap: 10px;
    }
    
    .quote-btn i {
        font-size: 16px;
    }
    
    .quote-btn span {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .fixed-quote-button {
        bottom: 15px;
        left: 15px;
    }
    
    .quote-btn {
        padding: 10px 18px;
        font-size: 13px;
        gap: 8px;
    }
    
    .quote-btn i {
        font-size: 14px;
    }
    
    .quote-btn span {
        font-size: 12px;
    }
}


/* Price List Page Styles */
.price-hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%), url('images/4287.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0 80px;
    margin-top: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(65, 162, 181, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(65, 162, 181, 0.03) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
    pointer-events: none;
}

.price-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.price-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.price-hero p {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Price Hero Button Styles */
.price-hero .btn-primary {
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    border: 2px solid #00b4d8;
}

.price-hero .btn-primary:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    border-color: #0077b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.5);
}

.price-hero .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.price-hero .btn-secondary:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    color: white;
    border-color: #0077b6;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 180, 216, 0.5);
}

.price-list-main {
    padding: 80px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
}

.price-list-main .container {
    max-width: 1600px;
}

/* Active navigation link */
.nav-menu a.active {
    color: #00b4d8;
    font-weight: 600;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #00b4d8, #0077b6);
    border-radius: 1px;
}

/* Mobile Responsive for Price Hero */
@media (max-width: 768px) {
    .price-hero {
        padding: 100px 0 60px;
        margin-top: 0;
    }
    
    .price-hero h1 {
        font-size: 36px;
    }
    
    .price-hero p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons .btn {
        min-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .price-hero {
        padding: 80px 0 50px;
        margin-top: 0;
    }
    
    .price-hero-content {
        gap: 30px;
    }
    
    .hero-image img {
        max-width: 250px;
    }
    
    .price-hero h1 {
        font-size: 32px;
    }
    
    .price-hero p {
        font-size: 16px;
    }
    
    .hero-buttons .btn {
        min-width: 100%;
        padding: 15px 20px;
    }
}

/* Price List Section */
.price-list {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-bottom: 60px;
}

.price-category {
    background: #fff;
    border-radius: 20px;
    padding: 60px 55px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
    overflow: hidden;
    min-height: 580px;
}

.price-category::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b4d8, #0077b6, #023e8a);
}

.price-category:hover {
    box-shadow: 0 20px 40px rgba(65, 162, 181, 0.15);
    transform: translateY(-5px);
}

.price-category h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 12px;
}

.price-category h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #00b4d8, #0077b6);
    border-radius: 1px;
}

.price-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.price-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    border-color: #00b4d8;
}

.price-info {
    flex: 1;
    margin-right: 20px;
}

.price-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
    line-height: 1.3;
}

.price-info p {
    font-size: 13px;
    color: #00b4d8;
    margin: 0;
    line-height: 1.4;
}

.price-contact {
    flex-shrink: 0;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #00b4d8, #0077b6);
    color: white;
    padding: 10px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    border: 2px solid #00b4d8;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.contact-btn:hover {
    background: linear-gradient(135deg, #0077b6, #023e8a);
    border-color: #0077b6;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 180, 216, 0.4);
}

.contact-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 180, 216, 0.3);
}

.price-note {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid #f1f3f4;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.price-note::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ff9800);
}

.note-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
    text-align: left;
    justify-content: center;
}

.note-content i {
    color: #ffc107;
    font-size: 24px;
    margin-top: 2px;
    flex-shrink: 0;
}

.note-content p {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
}

.contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn {
    min-width: 180px;
    justify-content: center;
}

/* Mobile Responsive for Price List */
@media (max-width: 1200px) {
    .price-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .price-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .price-category {
        padding: 30px 20px;
    }
    
    .price-category h3 {
        font-size: 20px;
        margin-bottom: 25px;
    }
    
    .price-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
    }
    
    .price-info {
        margin-right: 0;
        width: 100%;
    }
    
    .price-contact {
        width: 100%;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .price-note {
        padding: 30px 20px;
    }
    
    .note-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-buttons .btn {
        min-width: 100%;
    }
}

@media (max-width: 480px) {
    .price-category {
        padding: 25px 15px;
    }
    
    .price-item {
        padding: 15px;
    }
    
    .price-info h4 {
        font-size: 16px;
    }
    
    .price-info p {
        font-size: 13px;
    }
    
    .contact-btn {
        font-size: 14px;
        padding: 12px 18px;
    }
    
    .price-note {
        padding: 25px 15px;
    }
    
    .note-content p {
        font-size: 14px;
    }
}

/* About Us Page Specific Styles */
.page-header {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 25%, #e9ecef 75%, #dee2e6 100%);
    padding: 120px 0 80px;
    margin-top: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 70%, rgba(65, 162, 181, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 30%, rgba(65, 162, 181, 0.03) 0%, transparent 50%);
    animation: backgroundMove 20s ease-in-out infinite;
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-header p {
    font-size: 20px;
    color: #00b4d8;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: #2c7a89;
    margin-top: 20px;
}

.breadcrumb a {
    color: #00b4d8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #0077b6;
}

.breadcrumb span {
    color: #2c3e50;
    font-weight: 600;
}

/* About Us Section */
.about-us-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdfdff 0%, #f9fbff 100%);
}

.about-us-section .about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 40px;
}

.about-us-section .about-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.about-us-section .about-text .lead {
    font-size: 20px;
    color: #00b4d8;
    margin-bottom: 25px;
    line-height: 1.6;
    font-weight: 500;
}

.about-us-section .about-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Why Denart Section */
.why-denart-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
}

.why-denart-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.why-denart-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
    overflow: hidden;
}

.why-denart-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00b4d8, #0077b6, #023e8a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-denart-card:hover::before {
    transform: scaleX(1);
}

.why-denart-card:hover {
    box-shadow: 0 15px 35px rgba(0, 180, 216, 0.3);
    transform: translateY(-8px);
    border-color: #00b4d8;
}

.why-denart-card .card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00b4d8, #0077b6, #023e8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.why-denart-card:hover .card-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 180, 216, 0.4);
}

.why-denart-card .card-icon i {
    font-size: 32px;
    color: #fff;
}

.why-denart-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.why-denart-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Our Clinic Section */
.our-clinic-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdfdff 0%, #f9fbff 100%);
}

.clinic-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.clinic-text h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.clinic-text p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.clinic-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.clinic-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 5px 0;
}

.clinic-features .feature-item i {
    color: #28a745;
    font-size: 18px;
}

.clinic-features .feature-item span {
    font-size: 16px;
    color: #333;
}

.clinic-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.clinic-gallery .gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.clinic-gallery .gallery-item:hover {
    box-shadow: 0 20px 40px rgba(65, 162, 181, 0.2);
    transform: translateY(-5px);
}

.clinic-gallery .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.clinic-gallery .gallery-item:hover img {
    transform: scale(1.05);
}

/* Our Doctors Section */
.our-doctors-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
}

.doctors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.doctors-grid .doctor-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.doctors-grid .doctor-card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.doctors-grid .doctor-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.doctors-grid .doctor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.doctors-grid .doctor-card:hover .doctor-image img {
    transform: scale(1.05);
}

.doctors-grid .doctor-info {
    padding: 25px 20px;
}

.doctors-grid .doctor-info h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.doctors-grid .doctor-title {
    color: #2c7a89;
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
}

.doctors-grid .doctor-experience {
    color: #666;
    margin-bottom: 15px;
    font-size: 13px;
}

.doctors-grid .doctor-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.doctors-grid .doctor-specialties span {
    background: #f8f9fa;
    color: #2c7a89;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid #e9ecef;
}

/* Certifications Section */
.certifications-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdfdff 0%, #f9fbff 100%);
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.certification-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
    overflow: hidden;
}

.certification-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ffc107, #ff9800);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.certification-card:hover::before {
    transform: scaleX(1);
}

.certification-card:hover {
    box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
    transform: translateY(-8px);
    border-color: #ffc107;
}

.certification-card .cert-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffc107, #ff9800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.certification-card:hover .cert-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}

.certification-card .cert-icon i {
    font-size: 32px;
    color: #fff;
}

.certification-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.certification-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Technologies Section */
.technologies-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
}

.technologies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.tech-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
    overflow: hidden;
}

.tech-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c7a89, #1e6b7a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.tech-card:hover::before {
    transform: scaleX(1);
}

.tech-card:hover {
    box-shadow: 0 15px 35px rgba(65, 162, 181, 0.2);
    transform: translateY(-8px);
    border-color: #2c7a89;
}

.tech-card .tech-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2c7a89, #1e6b7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.tech-card:hover .tech-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(65, 162, 181, 0.3);
}

.tech-card .tech-icon i {
    font-size: 28px;
    color: #fff;
}

.tech-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.tech-card p {
    color: #666;
    line-height: 1.6;
    font-size: 13px;
}

/* Guarantees Section */
.guarantees-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdfdff 0%, #f9fbff 100%);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.guarantee-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
    overflow: hidden;
}

.guarantee-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #28a745, #20c997);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.guarantee-card:hover::before {
    transform: scaleX(1);
}

.guarantee-card:hover {
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.2);
    transform: translateY(-8px);
    border-color: #28a745;
}

.guarantee-card .guarantee-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.guarantee-card:hover .guarantee-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3);
}

.guarantee-card .guarantee-icon i {
    font-size: 32px;
    color: #fff;
}

.guarantee-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.guarantee-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 20px;
}

.guarantee-period {
    background: #28a745;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Free Services Section */
.free-services-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
}

.free-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.free-services-grid .service-card {
    background: #fff;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
    overflow: hidden;
}

.free-services-grid .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #17a2b8, #138496);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.free-services-grid .service-card:hover::before {
    transform: scaleX(1);
}

.free-services-grid .service-card:hover {
    box-shadow: 0 15px 35px rgba(23, 162, 184, 0.2);
    transform: translateY(-8px);
    border-color: #17a2b8;
}

.free-services-grid .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #17a2b8, #138496);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.free-services-grid .service-card:hover .service-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(23, 162, 184, 0.3);
}

.free-services-grid .service-icon i {
    font-size: 28px;
    color: #fff;
}

.free-services-grid .service-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 12px;
}

.free-services-grid .service-card p {
    color: #666;
    line-height: 1.6;
    font-size: 13px;
}

/* Contact CTA Section */
.contact-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c7a89 0%, #1e6b7a 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-buttons .btn-primary:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-secondary {
    background: white;
    color: #2c7a89;
    border: 2px solid white;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1e6b7a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsive for About Us Page */
@media (max-width: 768px) {
    .page-header {
        padding: 100px 0 60px;
        margin-top: 0;
    }
    
    .page-header h1 {
        font-size: 36px;
    }
    
    .page-header p {
        font-size: 18px;
    }
    
    .about-us-section .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .why-denart-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .clinic-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .clinic-gallery .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .doctors-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .technologies-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .free-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        min-width: 250px;
        justify-content: center;
    }
}

/* Dental Holiday Page Styles */
.dental-holiday-hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 0;
    background: linear-gradient(135deg, #00b4d8 0%, #0077b6 50%, #023e8a 100%);
    color: white;
}

.dental-holiday-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
}

.dental-holiday-hero h1,
.dental-holiday-hero .hero-main-title {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dental-holiday-hero .highlight-text {
    color: white !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.dental-holiday-hero .hero-description {
    color: rgba(255, 255, 255, 0.95) !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.dental-holiday-hero .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white !important;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.dental-holiday-hero .feature-item {
    color: white !important;
}

.dental-holiday-hero .feature-item i {
    color: white !important;
}

.dental-holiday-hero .feature-item span {
    color: white !important;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 180, 216, 0.8) 0%, rgba(0, 119, 182, 0.9) 50%, rgba(2, 62, 138, 0.8) 100%);
    z-index: 2;
}

/* Dental Packages Section */
.dental-packages {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.package-card.featured {
    transform: scale(1.05);
    border: 2px solid #2c7a89;
    box-shadow: 0 20px 40px rgba(65, 162, 181, 0.2);
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.package-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.package-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    padding: 8px 40px;
    font-size: 12px;
    font-weight: 600;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-header {
    margin-bottom: 30px;
}

.package-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c7a89, #1e6b7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.package-card:hover .package-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(65, 162, 181, 0.3);
}

.package-icon i {
    font-size: 32px;
    color: #fff;
}

.package-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.package-subtitle {
    color: #2c7a89;
    font-size: 16px;
    font-weight: 500;
}

.package-features {
    margin: 30px 0;
    text-align: left;
}

.package-features .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 8px 0;
}

.package-features .feature-item i {
    color: #28a745;
    font-size: 16px;
    width: 20px;
}

.package-features .feature-item span {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
}

.package-price {
    margin: 30px 0;
    padding: 20px 0;
    border-top: 2px solid #f1f3f4;
    border-bottom: 2px solid #f1f3f4;
}

.package-price .price {
    font-size: 36px;
    font-weight: 700;
    color: #2c7a89;
    display: block;
}

.package-price .price-note {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.package-btn {
    background: linear-gradient(135deg, #2c7a89, #1e6b7a);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(65, 162, 181, 0.3);
}

.package-btn:hover {
    background: linear-gradient(135deg, #1e6b7a, #2d8a9b);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(65, 162, 181, 0.4);
}

/* Why Dental Holiday Section */
.why-dental-holiday {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdfdff 0%, #f9fbff 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.advantage-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
    overflow: hidden;
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2c7a89, #1e6b7a);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.advantage-card:hover::before {
    transform: scaleX(1);
}

.advantage-card:hover {
    box-shadow: 0 15px 35px rgba(65, 162, 181, 0.2);
    transform: translateY(-8px);
    border-color: #2c7a89;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2c7a89, #1e6b7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(65, 162, 181, 0.3);
}

.advantage-icon i {
    font-size: 32px;
    color: #fff;
}

.advantage-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.advantage-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* Treatment Process Section */
.treatment-process {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2c7a89, #1e6b7a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    font-weight: 700;
    color: white;
    box-shadow: 0 5px 15px rgba(65, 162, 181, 0.3);
}

.step-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

/* Antalya Attractions Section */
.antalya-attractions {
    padding: 100px 0;
    background: linear-gradient(180deg, #fdfdff 0%, #f9fbff 100%);
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.attraction-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.attraction-card:hover {
    box-shadow: 0 15px 35px rgba(65, 162, 181, 0.2);
    transform: translateY(-8px);
}

.attraction-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.attraction-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.attraction-card:hover .attraction-image img {
    transform: scale(1.1);
}

.attraction-content {
    padding: 25px;
}

.attraction-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
}

.attraction-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* Dental Holiday Testimonials */
.dental-holiday-testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, #f6f9ff 0%, #eef6ff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
    position: relative;
}

.testimonial-card:hover {
    box-shadow: 0 15px 35px rgba(65, 162, 181, 0.2);
    transform: translateY(-5px);
    border-color: #2c7a89;
}

.testimonial-content .stars {
    display: flex;
    gap: 5px;
    margin-bottom: 20px;
}

.testimonial-content .stars i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-content p {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author .author-info h4 {
    color: #2c3e50;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author .author-info span {
    color: #2c7a89;
    font-size: 14px;
    font-weight: 500;
}

/* Dental Holiday CTA */
.dental-holiday-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c7a89 0%, #1e6b7a 100%);
    color: white;
    text-align: center;
}

.dental-holiday-cta .cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dental-holiday-cta .cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.dental-holiday-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.dental-holiday-cta .cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
    font-weight: 500;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.dental-holiday-cta .cta-note i {
    color: #ffffff;
    font-size: 16px;
}

/* Mobile Responsive for Dental Holiday */
@media (max-width: 768px) {
    .dental-holiday-hero {
        height: 90vh;
        margin-top: 0;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .package-card.featured {
        transform: none;
    }
    
    .package-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .dental-holiday-cta .cta-content h2 {
        font-size: 28px;
    }
    
    .dental-holiday-cta .cta-content p {
        font-size: 16px;
    }
    
    .dental-holiday-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .dental-holiday-cta .cta-buttons .btn-primary,
    .dental-holiday-cta .cta-buttons .btn-secondary {
        min-width: 250px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card {
        padding: 30px 20px;
    }
    
    .advantage-card {
        padding: 30px 20px;
    }
    
    .dental-holiday-cta .cta-buttons .btn-primary,
    .dental-holiday-cta .cta-buttons .btn-secondary {
        min-width: 100%;
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 80px 0 50px;
        margin-top: 0;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
    
    .page-header p {
        font-size: 16px;
    }
    
    .certifications-grid,
    .technologies-grid,
    .free-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-denart-card,
    .certification-card,
    .tech-card,
    .guarantee-card,
    .free-services-grid .service-card {
        padding: 30px 20px;
    }
    
    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        min-width: 100%;
        padding: 15px 20px;
    }
}
