/* Global Styles */
:root {
    --primary-color: #c29578;
    --secondary-color: #4a4e69;
    --accent-color: #f2cc8f;
    --light-color: #f7f7f7;
    --dark-color: #22223b;
    --text-color: #333;
    --light-text: #f7f7f7;
    --border-color: #e0e0e0;
    --success-color: #4caf50;
    --error-color: #f44336;
    --warning-color: #ff9800;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    font-family: inherit;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5em;
    color: var(--dark-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: var(--shadow);
    padding: 0.5rem 5%;
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    border-radius: 50%;
    object-fit: cover;
}

header h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    align-items: center;
}

nav ul li {
    margin-left: 1.5rem;
}

nav ul li a {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
    color: var(--secondary-color);
    font-weight: 500;
    position: relative;
}

nav ul li a i {
    margin-right: 0.5rem;
}

nav ul li a:hover {
    color: var(--primary-color);
}

nav ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    color: var(--light-text);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.cta-button:hover {
    background-color: transparent;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Features Section */
.features {
    padding: 5rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    background-color: #fff;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.feature-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.feature-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--secondary-color);
}

.feature-card p {
    padding: 0 1.5rem 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--light-color);
    padding: 5rem 5%;
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 3rem;
}

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

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.testimonial img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--primary-color);
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial h4 {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Latest Posts Section */
.latest-posts {
    padding: 5rem 5%;
    background-color: #fff;
}

.latest-posts h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.post-previews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.post-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.post-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.post-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
}

.post-card p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
}

.read-more {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.read-more:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Footer Styles */
footer {
    background-color: var(--dark-color);
    color: var(--light-text);
    padding: 4rem 5% 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-info h3,
.footer-links h3,
.footer-legal h3,
.footer-social h3 {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-info p {
    margin-bottom: 0.7rem;
}

.footer-info i {
    margin-right: 0.5rem;
    color: var(--accent-color);
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 0.7rem;
}

.footer-links a,
.footer-legal a {
    color: var(--light-text);
    opacity: 0.8;
}

.footer-links a:hover,
.footer-legal a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    opacity: 0.8;
    margin-bottom: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.85);
    color: #fff;
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookie-content p {
    margin-bottom: 1rem;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cookie-btn {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: white;
}

.cookie-btn.customize {
    background-color: white;
    color: var(--dark-color);
}

.cookie-btn.decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.cookie-policy {
    font-size: 0.9rem;
}

.cookie-policy a {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Page Banner */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/9.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 4rem 2rem;
    color: var(--light-text);
}

.page-banner h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.page-banner p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Page Styles */
.services-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 5rem 5%;
    align-items: center;
    background-color: #fff;
}

.services-intro img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
    object-fit: cover;
}

.intro-content h2 {
    margin-bottom: 2rem;
}

.service-categories {
    padding: 5rem 5%;
    background-color: var(--light-color);
}

.service-category {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    margin-bottom: 4rem;
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category img {
    height: 100%;
    object-fit: cover;
}

.category-content {
    padding: 2rem;
}

.category-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.service-list li {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.service-list li:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.service-name {
    font-weight: 600;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.3rem;
}

.service-price {
    color: var(--primary-color);
    font-weight: 500;
    display: block;
    margin-bottom: 0.5rem;
}

.service-description {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.service-packages {
    padding: 5rem 5%;
    background-color: #fff;
    text-align: center;
}

.service-packages h2 {
    margin-bottom: 3rem;
}

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

.package-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
}

.package-card p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.package-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.booking-info {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 4rem 5%;
    text-align: center;
}

.booking-content {
    max-width: 800px;
    margin: 0 auto;
}

.booking-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.booking-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.primary-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

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

.secondary-btn {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #fff;
    transition: var(--transition);
}

.secondary-btn:hover {
    background-color: #fff;
    color: var(--secondary-color);
}

/* Blog Page Styles */
.blog-container {
    padding: 5rem 5% 3rem;
    background-color: #fff;
    width: 70%;
    float: left;
}

.blog-sidebar {
    width: 30%;
    float: right;
    padding: 5rem 5% 3rem 0;
    background-color: #fff;
}

.blog-post {
    margin-bottom: 4rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 3rem;
}

.blog-post:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.blog-post img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.blog-post h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.post-meta i {
    margin-right: 0.5rem;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.post-tags span {
    background-color: var(--light-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.post-tags i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.sidebar-section {
    margin-bottom: 3rem;
}

.sidebar-section h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.sidebar-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    color: var(--text-color);
    transition: var(--transition);
}

.category-list a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background-color: var(--light-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-form input {
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
}

.submit-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.8rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Gallery Page Styles */
.gallery-filter {
    padding: 2rem 5%;
    text-align: center;
    background-color: #fff;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.filter-btn {
    background-color: var(--light-color);
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: #fff;
}

.gallery-container {
    padding: 3rem 5%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    background-color: #fff;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: var(--transition);
}

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

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

.gallery-caption h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.gallery-caption p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.stylist {
    display: block;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-style: italic;
}

.instagram-feed {
    padding: 5rem 5%;
    background-color: var(--light-color);
    text-align: center;
}

.instagram-feed h2 {
    margin-bottom: 1rem;
}

.instagram-feed p {
    margin-bottom: 3rem;
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

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

.insta-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: var(--transition);
}

.insta-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: var(--transition);
}

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

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

.insta-overlay i {
    color: #fff;
    font-size: 2rem;
}

.insta-link {
    display: inline-flex;
    align-items: center;
    color: var(--secondary-color);
    font-weight: 600;
}

.insta-link i {
    margin-right: 0.5rem;
    font-size: 1.5rem;
}

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

.cta-section {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 4rem 5%;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: #fff;
    margin-bottom: 1.5rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #fff;
    transition: var(--transition);
}

.secondary-button:hover {
    background-color: #fff;
    color: var(--secondary-color);
}

/* About Page Styles */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 5rem 5%;
    align-items: center;
    background-color: #fff;
}

.about-intro img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
    object-fit: cover;
}

.our-values {
    padding: 5rem 5%;
    background-color: var(--light-color);
    text-align: center;
}

.our-values h2 {
    margin-bottom: 3rem;
}

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

.value-card {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.value-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background-color: var(--light-color);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.team-section {
    padding: 5rem 5%;
    background-color: #fff;
    text-align: center;
}

.team-section h2 {
    margin-bottom: 1.5rem;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

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

.team-member {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.3rem;
}

.team-member p {
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.team-member p:nth-of-type(1) {
    color: var(--primary-color);
    font-weight: 600;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transition: var(--transition);
}

.member-social a:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.salon-experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 5rem 5%;
    align-items: center;
    background-color: var(--light-color);
}

.experience-content h2 {
    margin-bottom: 2rem;
}

.experience-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
}

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

.feature h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature p {
    font-size: 0.9rem;
}

.salon-experience img {
    border-radius: 10px;
    box-shadow: var(--shadow);
    height: 100%;
    object-fit: cover;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.testimonial-content p {
    font-style: italic;
    position: relative;
    padding: 0 1.5rem;
}

.testimonial-content p::before,
.testimonial-content p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    position: absolute;
}

.testimonial-content p::before {
    left: 0;
    top: -0.5rem;
}

.testimonial-content p::after {
    right: 0;
    bottom: -1rem;
}

.testimonial-content h4 {
    text-align: right;
    margin-top: 1.5rem;
    color: var(--secondary-color);
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    padding: 5rem 5%;
    background-color: #fff;
}

.contact-info {
    background-color: var(--secondary-color);
    color: var(--light-text);
    padding: 2.5rem;
    border-radius: 10px;
}

.contact-info h3 {
    color: #fff;
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.info-item {
    display: flex;
    margin-bottom: 2rem;
}

.info-item:last-child {
    margin-bottom: 3rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
    width: 25px;
}

.info-item h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.info-item a {
    color: var(--light-text);
    transition: var(--transition);
}

.info-item a:hover {
    color: var(--accent-color);
}

.social-connect h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.contact-form-container {
    position: relative;
}

.contact-form-container img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.contact-form {
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 0 0 10px 10px;
    box-shadow: var(--shadow);
    margin-top: -50px;
    position: relative;
}

.contact-form h3 {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--secondary-color);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    font-size: 0.9rem;
    font-weight: normal;
}

.map-section {
    padding: 5rem 5%;
    background-color: var(--light-color);
    text-align: center;
}

.map-section h3 {
    margin-bottom: 2rem;
}

.map-container {
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #e9e9e9;
}

.map-placeholder i {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.map-placeholder p {
    margin-bottom: 0.5rem;
}

.faq-section {
    padding: 5rem 5%;
    background-color: #fff;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-item {
    margin-bottom: 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background-color: var(--light-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h4 {
    margin-bottom: 0;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-item.active .faq-question {
    background-color: var(--primary-color);
    color: #fff;
}

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

/* Success Popup */
.success-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.success-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background-color: #fff;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    transform: translateY(-50px);
    transition: var(--transition);
}

.success-popup.show .popup-content {
    transform: translateY(0);
}

.popup-content i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.popup-content h3 {
    margin-bottom: 1rem;
}

.popup-content p {
    margin-bottom: 2rem;
}

.close-btn {
    background-color: var(--primary-color);
    color: #fff;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Complaint Form */
.complaint-form {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    width: 350px;
    z-index: 99;
}

.complaint-form h3 {
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--secondary-color);
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .services-intro,
    .salon-experience {
        grid-template-columns: 1fr;
    }
    
    .blog-container,
    .blog-sidebar {
        width: 100%;
        float: none;
    }
    
    .blog-sidebar {
        padding: 0 5% 5rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    header {
        flex-direction: column;
        padding: 1rem 5%;
    }
    
    .logo-container {
        margin-bottom: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .service-category {
        grid-template-columns: 1fr;
    }
    
    .service-category img {
        height: 250px;
    }
    
    .experience-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
    }
    
    .testimonial-container {
        grid-template-columns: 1fr;
    }
    
    .package-card,
    .value-card {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .booking-buttons,
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .booking-buttons a,
    .cta-buttons a {
        width: 100%;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .feature-card {
        max-width: 300px;
        margin: 0 auto;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info i {
        margin-right: 0.3rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .complaint-form {
        width: 90%;
        right: 5%;
        left: 5%;
    }
}
