/**
 * Main CSS file for Elite Hair Studio website
 */

:root {
    --primary-color: #1e88e5;      /* Primary color (Blue) */
    --primary-dark: #0d47a1;       /* Dark blue */
    --primary-light: #64b5f6;      /* Light blue */
    --secondary-color: #1e293b;    /* Secondary color (Dark blue/black) */
    --white: #ffffff;              /* White */
    --light-gray: #e9ecef;         /* Light gray - darker shade */
    --gray: #6c757d;               /* Gray */
    --dark: #212529;               /* Dark */
    --black: #000000;              /* Black */
}

/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background-color: var(--white);
    line-height: 1.6;
}

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

a:hover {
    color: var(--primary-dark);
}

.btn {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

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

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

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

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

.section-padding {
    padding: 80px 0;
}

.section-title {
    margin-bottom: 50px;
    text-align: center;
}

.section-title h2 {
    font-weight: 700;
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--primary-color);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    font-size: 18px;
    color: var(--gray);
}

/* Header Styles */
.header-section {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-header {
    font-size: 14px;
}

.top-header i {
    color: var(--primary-color);
}

.main-header {
    background-color: var(--white);
}

.logo {
    max-height: 60px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 10px 15px;
    color: var(--dark);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

/* Banner Section */
.banner-section {
    position: relative;
    overflow: hidden;
}

.banner-slide {
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    text-align: center;
    z-index: 2;
    padding: 0 15px;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none; /* Allow clicks to pass through */
}

.banner-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.banner-content h3 {
    font-size: 24px;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 18px;
    color: var(--white);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Section */
.about-section {
    background-color: var(--light-gray);
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.about-content h2 {
    font-weight: 700;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
}

.about-feature {
    margin-top: 30px;
}

.about-feature-item {
    margin-bottom: 20px;
}

.about-feature-item i {
    color: var(--primary-color);
    font-size: 24px;
    margin-right: 10px;
}

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

.service-tabs .nav-tabs {
    border: none;
    margin-bottom: 30px;
    justify-content: center;
}

.service-tabs .nav-tabs .nav-link {
    border: none;
    background-color: var(--light-gray);
    color: var(--dark);
    font-weight: 500;
    padding: 10px 30px;
    border-radius: 50px;
    margin: 0 5px;
}

.service-tabs .nav-tabs .nav-link.active {
    background-color: var(--primary-color);
    color: var(--white);
}

.service-item {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-item img {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 15px;
}

.service-item h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.service-item .price {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.service-item .duration {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

/* Gallery Section */
.gallery-section {
    background-color: var(--light-gray);
}

.gallery-filter {
    margin-bottom: 30px;
    text-align: center;
}

.gallery-filter button {
    background: none;
    border: none;
    font-weight: 500;
    padding: 8px 20px;
    margin: 0 5px 10px;
    cursor: pointer;
    color: var(--dark);
    transition: all 0.3s ease;
    border-radius: 50px;
}

.gallery-filter button.active,
.gallery-filter button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.gallery-item {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    transition: all 0.5s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none; /* Allow clicks to pass through */
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    pointer-events: auto; /* Enable clicks when visible */
}

.gallery-overlay a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 5px;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay a {
    transform: translateY(0);
    opacity: 1;
}

/* Salons Section */
.salons-section {
    background-color: var(--white);
}

.salon-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.salon-item img {
    width: 100%;
}

.salon-content {
    padding: 20px;
}

.salon-content h4 {
    font-weight: 600;
    margin-bottom: 10px;
}

.salon-content .salon-info {
    margin-bottom: 15px;
}

.salon-content .salon-info p {
    margin-bottom: 5px;
    font-size: 14px;
}

.salon-content .salon-info p i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Appointment Section */
.appointment-section {
    background-color: var(--light-gray);
}

.appointment-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.appointment-form h3 {
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 50px;
    border-radius: 5px;
}

textarea.form-control {
    height: 120px;
}

/* Time Slots */
.time-slots {
    margin-top: 10px;
}

.time-slot {
    display: block;
    width: 100%;
    padding: 8px 0;
    text-align: center;
    background-color: var(--light-gray);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.time-slot:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.time-slot.selected {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Appointment Info */
.appointment-info {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.appointment-info h3 {
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
}

.appointment-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.appointment-info-item .icon {
    width: 40px;
    height: 40px;
    background-color: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.appointment-info-item .content h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.appointment-info-item .content p {
    margin-bottom: 0;
    color: var(--gray);
}

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

.contact-info {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: 10px;
    height: 100%;
}

.contact-info h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.contact-info-content h5 {
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-form {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-weight: 600;
    margin-bottom: 20px;
}

/* Footer Styles */
.modern-footer {
    background-color: #111;
    color: #fff;
    padding: 60px 0 20px;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-brand {
    flex: 0 0 100%;
    max-width: 300px;
    margin-bottom: 30px;
}

.footer-brand h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.footer-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.footer-social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.footer-links {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 40px;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
    min-width: 140px;
}

.footer-links-column a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-links-column a i {
    margin-right: 8px;
    color: var(--primary-color);
    font-size: 14px;
}

.footer-links-column a:hover {
    color: #fff;
    transform: translateX(3px);
}

.contact-info {
    min-width: 220px;
}

.appointment-btn {
    margin-top: 10px;
    padding: 12px 15px;
    background-color: var(--primary-color);
    border-radius: 6px;
    color: #fff !important;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
}

.appointment-btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    text-decoration: none;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Page Banner */
.page-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
    z-index: 1;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.page-banner-content h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-banner .breadcrumb {
    background: transparent;
    margin-bottom: 0;
    justify-content: center;
}

.page-banner .breadcrumb-item a {
    color: #fff;
}

.page-banner .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
}

.page-banner .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.6);
}

/* Full Width Banner */
.page-banner-full {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-banner-full .banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-banner-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.page-banner-full .banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 77px 20px;
    width: 100%;
    top: 45px;
}

/* Banner Content Styles */
.banner-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    top: 129px;
    padding: 0 20px;
    color: #fff;
}

/* Secondary Banner Item */
.secondary-banner-item {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.secondary-banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.secondary-banner-item:hover::before {
    background: rgba(0, 0, 0, 0.7);
}

/* Product Banner Item */
.product-banner-item {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-banner-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Video Section Styles */
.video-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-container video {
    width: 100%;
    display: block;
}

.video-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.video-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #fff;
    padding: 20px;
}

.video-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-content p {
    font-size: 18px;
    margin-bottom: 25px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Instagram Section Styles */
.instagram-section {
    padding: 60px 0;
}

.instagram-item {
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.instagram-item img {
    width: 100%;
    transition: all 0.5s ease;
}

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

.instagram-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

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

.instagram-overlay i {
    color: #fff;
    font-size: 24px;
}

/* Premium VIP Footer Styles */
.premium-footer {
    position: relative;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    color: #fff;
    padding: 80px 0 30px;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.premium-footer::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), #9c27b0, var(--primary-color));
    background-size: 200% 100%;
    animation: gradientMove 4s linear infinite;
}

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

.footer-content-premium {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand-premium {
    grid-column: 1;
}

.footer-brand-premium h4 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-brand-premium h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.footer-brand-premium p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
    line-height: 1.7;
    max-width: 90%;
}

.footer-social-premium {
    display: flex;
    gap: 15px;
}

.social-icon-premium {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.social-icon-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: -1;
}

.social-icon-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    color: #fff;
}

.social-icon-premium:hover::before {
    transform: scale(1);
}

.footer-nav-premium {
    grid-column: 2;
}

.footer-nav-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    display: inline-block;
}

.footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Center the "Hızlı Bağlantılar" title */
.footer-nav-premium .footer-nav-title {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    font-size: 22px;
    font-weight: 700;
    position: relative;
}

.footer-nav-premium .footer-nav-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.2), var(--primary-color), rgba(255,255,255,0.2));
    border-radius: 2px;
}

.footer-nav-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.footer-nav-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--primary-color);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-nav-link:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-nav-link:hover::before {
    opacity: 1;
    background-color: #fff;
}

.footer-contact-premium {
    grid-column: 3;
}

.contact-item-premium {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.contact-icon-premium {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-info-premium {
    flex: 1;
}

.contact-info-premium h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #fff;
}

.contact-info-premium p, 
.contact-info-premium a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.contact-info-premium a:hover {
    color: #fff;
}

.contact-item-premium:hover .contact-icon-premium {
    background: var(--primary-color);
    color: #fff;
    transform: rotateY(180deg);
}

.premium-appointment-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 12px 25px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(30, 136, 229, 0.4);
    transition: all 0.4s ease;
}

.premium-appointment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-appointment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.5);
}

.premium-appointment-btn:hover::before {
    opacity: 1;
}

.footer-bottom-premium {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links-premium {
    display: flex;
    gap: 25px;
}

.footer-link-premium {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link-premium::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.footer-link-premium:hover {
    color: #fff;
}

.footer-link-premium:hover::after {
    width: 100%;
}

.back-to-top-premium {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 99;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top-premium.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top-premium:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px;
}

.footer-wave .shape-fill {
    fill: #FFFFFF;
}

/* Floating elements animation */
.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.floating-1 {
    width: 150px;
    height: 150px;
    top: 10%;
    left: 10%;
    animation: float 8s ease-in-out infinite;
}

.floating-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 20%;
    animation: float 12s ease-in-out infinite 1s;
}

.floating-3 {
    width: 120px;
    height: 120px;
    top: 30%;
    right: 15%;
    animation: float 10s ease-in-out infinite 2s;
}

.floating-4 {
    width: 60px;
    height: 60px;
    bottom: 20%;
    right: 25%;
    animation: float 15s ease-in-out infinite 3s;
}

@keyframes float {
    0% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(15px, -15px) rotate(5deg); }
    50% { transform: translate(0, -25px) rotate(0deg); }
    75% { transform: translate(-15px, -15px) rotate(-5deg); }
    100% { transform: translate(0, 0) rotate(0deg); }
}

/* Premium VIP Header Styles */
.premium-header {
    position: relative;
    z-index: 1000;
    font-family: 'Poppins', sans-serif;
}

/* Top Header */
.premium-top-header {
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    padding: 12px 0;
    position: relative;
    overflow: hidden;
}

.premium-top-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect x="0" y="0" width="100" height="100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    opacity: 0.3;
    z-index: 1;
    pointer-events: none;
}

.premium-top-header .container {
    position: relative;
    z-index: 2;
}

.premium-contact-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.premium-contact-info span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-right: 20px;
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.premium-contact-info i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.premium-contact-info span:hover i {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.premium-working-hours {
    display: flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    margin-right: 20px;
}

.premium-working-hours i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.1);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.premium-social-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.premium-social-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

/* Main Header */
.premium-main-header {
    background-color: rgba(255, 255, 255, 0.97);
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
    z-index: 1000;
}

.premium-main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    animation: slideDown 0.5s forwards;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 15px 0;
    z-index: 1000;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.premium-logo {
    display: flex;
    align-items: center;
}

.premium-logo img {
    max-height: 83px;
    transition: all 0.3s ease;
}

.sticky .premium-logo img {
    max-height: 84px;
}

.premium-logo h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.sticky .premium-logo h1 {
    font-size: 24px;
}

/* Premium Navigation */
.premium-navbar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.premium-nav {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.premium-nav-item {
    margin: 0 3px;
    position: relative;
}

.premium-nav-link {
    display: block;
    padding: 8px 15px;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.premium-nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    transition: width 0.3s ease;
}

.premium-nav-link:hover {
    color: var(--primary-color);
}

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

.premium-nav-link.active {
    color: var(--primary-color);
    font-weight: 600;
}

.premium-appointment-btn {
    display: inline-block;
    margin-left: 15px;
    padding: 10px 20px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    border-radius: 30px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.3);
    transition: all 0.4s ease;
}

.premium-appointment-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-dark), var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-appointment-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(30, 136, 229, 0.4);
    color: #fff;
}

.premium-appointment-btn:hover::before {
    opacity: 1;
}

/* Navbar Toggler Styles */
.premium-navbar-toggler {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    width: 40px;
    height: 40px;
    z-index: 100;
    outline: none;
}

.toggler-icon {
    display: block;
    position: relative;
    background: var(--secondary-color);
    height: 2px;
    width: 24px;
    transition: all 0.3s ease;
}

.toggler-icon::before,
.toggler-icon::after {
    content: '';
    position: absolute;
    background: var(--secondary-color);
    height: 2px;
    width: 24px;
    transition: all 0.3s ease;
    left: 0;
}

.toggler-icon::before {
    top: -8px;
}

.toggler-icon::after {
    top: 8px;
}

.premium-navbar-toggler.open .toggler-icon {
    background: transparent;
}

.premium-navbar-toggler.open .toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.premium-navbar-toggler.open .toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
} 