/* Genel Stiller */

/* Hero Slider Başlık Özelleştirme */
.hero-slider h1 {
    text-align: left;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    padding: 0;
    border-radius: 0;
    background: none;
    letter-spacing: 1px;
    margin-bottom: 18px;
    margin-left: 0;
    margin-right: auto;
    display: block;
    opacity: 0.99;
    filter: drop-shadow(0 6px 24px rgba(0,0,0,0.55));
    text-shadow: 0 2px 8px rgba(0,0,0,0.25), 0 0px 1px #fff;
}


:root {
    --primary-color: #c830b6;
    --secondary-color: #d1cfe2;
    --accent-color: #9cadce;
    --dark-color: #7ec4cf;
    --light-color: #daeaf6;
    --text-color: #333;
    --text-light: #666;
    --white: #fff;
    --black: #000;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f9f9f9;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-color);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    color: var(--white);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 15px auto 0;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #EBE6E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background-color: #EBE6E0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.nav-left, .nav-right {
    display: flex;
    gap: 30px;
}

.nav-left a, .nav-right a {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-left a:hover, .nav-right a:hover {
    color: var(--primary-color);
}

.nav-left a::after, .nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-left a:hover::after, .nav-right a:hover::after {
    width: 100%;
}

.logo img {
    height: 100px;
    transition: all 0.3s ease;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    z-index: 1100;
    padding: 80px 30px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-menu ul a {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 10px 0;
    display: block;
    border-bottom: 1px solid #eee;
}

/* Hero Slider */
.hero-slider {
    height: 100vh;
    margin-top: 10px;
    position: relative;
}

.hero-slider .swiper {
    height: 100%;
}

.hero-slider .swiper-slide {
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    color: #820052;
}

.hero-slider .swiper-slide .container {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding-left: 10%;
}

.hero-slider .swiper-slide h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-slider .swiper-slide p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-slider .swiper-pagination {
    bottom: 50px !important;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white);
    opacity: 0.7;
}

.hero-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

.slide-1 {
    background-image: url('images/slayt.jpg');
}

.slide-2 {
    background-image: url('images/yuzunuzde_erken_kirisikligi_.jpg');
}

.slide-3 {
    background-image: url('images/ciltbakim.png');
}

/* Features */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

.features .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-box h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-box p {
    color: var(--text-light);
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background-color: #f5f5f5;
    text-align: center;
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.services-preview .subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-slider {
    margin-bottom: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    max-width: 350px;
    margin: 0 auto;
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-slider .swiper-pagination {
    position: relative;
    bottom: auto !important;
    margin-top: 30px;
}

.services-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #ddd;
    opacity: 1;
}

.services-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-color);
}

/* About Page */
.about-hero {
    height: 300px;
    display: flex;
    align-items: center;
    background-image: url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
    margin-top: 100px;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.about-hero .container {
    position: relative;
    z-index: 1;
}

.about-hero {
    background-image: url('images/saç.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero h1 {
    font-size: 3rem;
    color: var(--white);
    text-align: center;
    padding: 40px 0;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
    margin: 0;
}

.about-content {
    padding: 80px 0;
}

.about-content .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    max-width: 100%;
    width: 100%;
    padding: 0 20px;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(234, 0, 255, 0.1);
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.about-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    max-width: 2000px;
    height: auto;
    display: block;
}

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--white);
}

.about-text h3 {
    font-size: 1.5rem;
    margin: 30px 0 15px;
    color: var(--white);
}

.about-text p {
    margin-bottom: 15px;
    color: var(--white);
}

.signature {
    margin-top: 40px;
    font-style: italic;
}

.signature p:first-child {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.salon-features {
    padding: 80px 0;
    background-color: #f5f5f5;
}

.salon-features h2 {
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature-item h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-item p {
    color: var(--text-light);
}

/* Services Page */
.services-hero {
    height: 300px;
    display: flex;
    align-items: center;
    background-image: url('../images/saç.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
    margin-top: 100px;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(212, 175, 185, 0.8);
}

.services-hero .container {
    position: relative;
    z-index: 1;
}

.services-hero h1 {
    font-size: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.services-hero p {
    font-size: 1.2rem;
    margin-top: 20px;
}

.services-categories {
    padding: 50px 0;
    background-color: var(--light-color);
}

.category-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

/* Tüm Hizmetler */
.tab-btn[data-category="all"] {
    background-color: #d4afb9;
    color: white;
    border: none;
}

.tab-btn[data-category="all"]:hover, .tab-btn[data-category="all"].active {
    background-color: #c292a1;
    transform: translateY(-2px);
}

/* Cilt Bakımı */
.tab-btn[data-category="cilt"] {
    background-color: #9cadce;
    color: white;
    border: none;
}

.tab-btn[data-category="cilt"]:hover, .tab-btn[data-category="cilt"].active {
    background-color: #8092b2;
    transform: translateY(-2px);
}

/* Epilasyon */
.tab-btn[data-category="epilasyon"] {
    background-color: #d1cfe2;
    color: white;
    border: none;
}

.tab-btn[data-category="epilasyon"]:hover, .tab-btn[data-category="epilasyon"].active {
    background-color: #b8b0c8;
    transform: translateY(-2px);
}

/* Saç Bakımı */
.tab-btn[data-category="sac"] {
    background-color: #7ec4cf;
    color: white;
    border: none;
}

.tab-btn[data-category="sac"]:hover, .tab-btn[data-category="sac"].active {
    background-color: #66b0bf;
    transform: translateY(-2px);
}

/* Tırnak Bakımı */
.tab-btn[data-category="tirnak"] {
    background-color: #9cadce;
    color: white;
    border: none;
}

.tab-btn[data-category="tirnak"]:hover, .tab-btn[data-category="tirnak"].active {
    background-color: #476fb4;
    transform: translateY(-2px);
}

.services-grid {
    padding: 80px 0;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;   
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-image {
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-item:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-content p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.service-content ul {
    margin-bottom: 30px;
}

.service-content ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.service-content ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .btn {
    background-color: var(--white);
    color: var(--primary-color);
}

.cta-section .btn:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

/* Appointment Page */
.appointment-hero {
    background-color: #9fd8ff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 80px 0;
    text-align: center;
    color: var(--white);
    position: relative;
    margin-top: 100px;
}

.appointment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 255, 255, 0.8);
}

.appointment-hero .container {
    position: relative;
    z-index: 1;
}

.appointment-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.appointment-hero p {
    font-size: 1.2rem;
    margin-top: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

/* Appointment Page */
.appointment-hero {
    height: 300px;
    display: flex;
    align-items: center;
    background-image: url('../images/saç.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
    margin-top: 100px;
}

.appointment-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.appointment-hero .container {
    position: relative;
    z-index: 1;
}

.appointment-hero h1 {
    font-size: 3rem;
}

.appointment-hero p {
    font-size: 1.2rem;
    margin-top: 20px;
}

.appointment-form {
    padding: 80px 0;
}

.appointment-form .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

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

.form-container h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

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

.appointment-info {
    padding: 40px;
    background-color: var(--light-color);
    border-radius: 10px;
}

.appointment-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.appointment-info p i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 3px;
}

.emergency-note {
    margin-top: 30px;
    padding: 20px;
    background-color: var(--white);
    border-radius: 5px;
    border-left: 4px solid var(--primary-color);
}

.emergency-note h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Price Page */
.price-hero {
    height: 300px;
    display: flex;
    align-items: center;
    background-image: url('../images/saç.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
    margin-top: 100px;
}

.price-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.price-hero .container {
    position: relative;
    z-index: 1;
}

.price-hero h1 {
    font-size: 3rem;
}

.price-hero p {
    font-size: 1.2rem;
    margin-top: 20px;
}

.price-form {
    padding: 80px 0;
}

.price-form .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.price-info {
    padding: 40px;
    background-color: var(--light-color);
    border-radius: 10px;
}

.price-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.price-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.price-info p i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 3px;
}

.price-examples {
    margin-top: 30px;
}

.price-examples h4 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price-examples ul {
    margin-bottom: 15px;
}

.price-examples ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.price-examples ul li::before {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 0.8rem;
}

.price-examples p em {
    font-style: italic;
    color: var(--text-light);
}

/* Contact Page */
.contact-hero {
    height: 300px;
    display: flex;
    align-items: center;
    background-image: url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    position: relative;
    margin-top: 100px;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: 3rem;
}

.contact-hero p {
    font-size: 1.2rem;
    margin-top: 20px;
}

.contact-content {
    padding: 80px 0;
}

.contact-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 5px;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.social-media {
    margin-top: 50px;
    padding: 40px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
}

.social-media h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    justify-content: flex-end;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s ease;
    background: none;
    border-radius: 0;
    box-shadow: none;
    transform: none;
    cursor: pointer;
}

.social-links a:hover {
    text-decoration: underline;
    color: var(--primary-color);
    background: none;
    border-radius: 0;
    box-shadow: none;
    transform: none;
}

.social-links a i {
    background: none;
    border-radius: 0;
    box-shadow: none;
    color: var(--primary-color);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}


.social-links a:hover i {
    color: var(--secondary-color);
    text-decoration: underline;
}

.map-section {
    padding-bottom: 80px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-top: 50px;
    padding: 40px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: var(--primary-color);
}

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

/* Footer */
.footer {
    background-color: #222;
    color: #ddd;
    padding: 60px 0 0;
}

/* Service Cards */
.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    margin-bottom: 30px;
}

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

.service-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 30px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.service-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-column p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.footer-column p i {
    margin-right: 10px;
    color: var(--primary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border-radius: 0;
    width: auto;
    height: auto;
    color: var(--primary-color);
    transition: color 0.3s ease;
    box-shadow: none;
    justify-content: flex-start;
    padding: 0;
}

.social-links a:hover {
    background: none;
    border-radius: 0;
    color: var(--secondary-color);
    text-decoration: underline;
}

.copyright {
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 992px) {
    .about-content .container,
    .services-grid .service-item,
    .appointment-form .container,
    .price-form .container,
    .contact-content .container {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-left, .nav-right {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .logo {
        order: -1;
    }
    
    .hero-slider .swiper-slide h1 {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-hero h1,
    .services-hero h1,
    .appointment-hero h1,
    .price-hero h1,
    .contact-hero h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 576px) {
    .hero-slider .swiper-slide h1 {
        font-size: 2rem;
    }
    
    .hero-slider .swiper-slide p {
        font-size: 1rem;
    }
    
    .features .container {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
}