/* 
Elite Stylist - Main Stylesheet
*/

/* Base Styles & Typography */
:root {
    --primary-color: #ad6e7b;
    --primary-dark: #8c5765;
    --primary-light: #d1a2ad;
    --secondary-color: #5a7d7c;
    --secondary-dark: #405958;
    --secondary-light: #8ba8a7;
    --accent-color: #e8c5b5;
    --text-color: #333333;
    --text-light: #777777;
    --light-bg: #f9f5f5;
    --dark-bg: #2d2d2d;
    --white: #ffffff;
    --gray-light: #f4f4f4;
    --gray: #e0e0e0;
    --gray-dark: #9e9e9e;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-large: 0 10px 20px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --font-main: 'Open Sans', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Playfair Display', Georgia, serif;
}

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

html {
    font-size: 62.5%; /* 10px = 1rem */
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--text-color);
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1.5rem;
}

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

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

ul, ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

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

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

.lead {
    font-size: 1.8rem;
    line-height: 1.7;
    margin-bottom: 3rem;
    color: var(--text-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-dark);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

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

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

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

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

.btn-sm {
    padding: 0.8rem 1.5rem;
    font-size: 1.4rem;
}

/* Header & Navigation */
header {
    padding: 2rem 0;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 5rem;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

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

nav ul li a {
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.6rem;
    position: relative;
    padding-bottom: 0.5rem;
}

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

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

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

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

.hero-content h1 {
    margin-bottom: 1.5rem;
    font-size: 4.8rem;
}

.hero-content p {
    font-size: 2rem;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Features Section */
.features {
    padding: 8rem 0;
}

.features h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 4rem;
}

.feature-card {
    text-align: center;
    padding: 3rem;
    border-radius: var(--border-radius);
    background-color: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.feature-icon {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    background-color: var(--primary-light);
    border-radius: 50%;
    color: var(--white);
}

.feature-card h3 {
    margin-bottom: 1.5rem;
}

/* Latest Posts Section */
.latest-posts {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

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

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

.post-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.post-image {
    height: 240px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.post-card:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 2.5rem;
}

.post-content h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

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

.read-more {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.read-more::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 1rem;
}

.view-all {
    text-align: center;
    margin-top: 5rem;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    text-align: center;
}

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

.testimonial-slider {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    max-width: 350px;
    text-align: left;
}

.quote {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

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

.client {
    font-weight: 600;
}

.client .name {
    display: block;
    color: var(--text-color);
}

.client .title {
    color: var(--text-light);
    font-size: 1.4rem;
}

/* CTA Section */
.cta {
    padding: 8rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 6rem 0 2rem;
}

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

.footer-logo img {
    height: 5rem;
    margin-bottom: 1.5rem;
}

.footer-links h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: var(--gray-light);
}

.footer-links ul li a:hover {
    color: var(--primary-light);
}

.footer-contact h3 {
    color: var(--white);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-contact p svg {
    margin-right: 1rem;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

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

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

.copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.4rem;
    color: var(--gray-light);
}

/* Page Header */
.page-header {
    background-color: var(--light-bg);
    padding: 6rem 0;
    text-align: center;
}

.page-header h1 {
    margin-bottom: 1rem;
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.8rem;
}

/* Blog Page */
.blog-content {
    padding: 8rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 4rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.blog-image {
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-text {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.blog-meta {
    display: flex;
    gap: 2rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.blog-text p {
    margin-bottom: 2rem;
    flex-grow: 1;
}

.blog-text .btn {
    align-self: flex-start;
}

/* Blog Post */
.blog-post {
    padding: 8rem 0;
}

.post-header {
    margin-bottom: 4rem;
    text-align: center;
}

.post-header h1 {
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-light);
    font-size: 1.6rem;
}

.post-featured-image {
    margin-bottom: 4rem;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.post-featured-image img {
    width: 100%;
    height: auto;
}

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

.post-content h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.post-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin-bottom: 3rem;
}

.post-content li {
    margin-bottom: 0.8rem;
}

.post-cta {
    margin-top: 5rem;
    padding: 3rem;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
    text-align: center;
}

.post-cta h3 {
    margin-bottom: 1.5rem;
}

.post-cta p {
    margin-bottom: 2rem;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 5rem;
    padding-top: 3rem;
    border-top: 1px solid var(--gray);
}

.post-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--light-bg);
    border-radius: 3rem;
    color: var(--text-color);
    font-size: 1.4rem;
    transition: var(--transition);
}

.post-tags a:hover {
    background-color: var(--primary-light);
    color: var(--white);
}

.post-share {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.post-share span {
    font-weight: 600;
}

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.post-share a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
    padding: 3rem 0;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

.post-navigation-prev,
.post-navigation-next {
    max-width: 45%;
}

.post-navigation a {
    display: block;
    color: var(--text-color);
}

.post-navigation a:hover {
    color: var(--primary-color);
}

.post-navigation a span {
    display: block;
    font-size: 1.4rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.post-navigation a h4 {
    margin: 0;
    font-size: 1.8rem;
}

.related-posts {
    margin-top: 6rem;
}

.related-posts h3 {
    text-align: center;
    margin-bottom: 3rem;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.related-post {
    display: block;
    color: var(--text-color);
    transition: var(--transition);
}

.related-post:hover {
    transform: translateY(-5px);
}

.related-post img {
    border-radius: var(--border-radius);
    margin-bottom: 1.5rem;
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.related-post h4 {
    margin: 0;
    font-size: 1.6rem;
}

/* About Page */
.about-intro {
    padding: 8rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-content h2 {
    margin-bottom: 3rem;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.about-values {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.about-values h2 {
    text-align: center;
    margin-bottom: 5rem;
}

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

.value-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

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

.value-card h3 {
    margin-bottom: 1.5rem;
}

.team-section {
    padding: 8rem 0;
}

.team-section h2,
.team-section .section-intro {
    text-align: center;
}

.team-section .section-intro {
    max-width: 700px;
    margin: 0 auto 5rem;
    font-size: 1.8rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 4rem;
}

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover img {
    transform: scale(1.05);
    box-shadow: var(--shadow-large);
}

.team-member h3 {
    margin-bottom: 0.5rem;
}

.team-member p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.achievements-section {
    padding: 8rem 0;
    background-color: var(--light-bg);
    text-align: center;
}

.achievements-section h2 {
    margin-bottom: 5rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.achievement {
    background-color: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.achievement:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.achievement-number {
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1;
}

.achievement-text {
    font-size: 1.8rem;
    font-weight: 600;
}

/* Services Page */
.services-intro {
    padding: 4rem 0;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-grid {
    padding: 4rem 0 8rem;
}

.service-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-bottom: 8rem;
    align-items: center;
}

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

.service-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

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

.service-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.service-content ul {
    margin-bottom: 3rem;
}

.service-content li {
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
}

.service-content-centered {
    grid-column: span 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.process-section {
    padding: 8rem 0;
    background-color: var(--light-bg);
}

.process-section h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-light);
    z-index: 1;
}

.process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 180px;
}

.step-number {
    width: 6rem;
    height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    color: var(--white);
    font-size: 2.4rem;
    font-weight: 700;
}

.pricing-section {
    padding: 8rem 0;
}

.pricing-section h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.pricing-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: var(--shadow-large);
    border: 2px solid var(--primary-color);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem;
    text-align: center;
}

.pricing-header h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.pricing {
    font-size: 3.2rem;
    font-weight: 700;
}

.pricing-body {
    padding: 3rem;
}

.pricing-body ul {
    list-style: none;
    padding: 0;
    margin-bottom: 3rem;
}

.pricing-body ul li {
    padding-left: 2.5rem;
    position: relative;
    margin-bottom: 1.5rem;
}

.pricing-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.pricing-save {
    text-align: center;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
}

.pricing-footer {
    padding: 0 3rem 3rem;
    text-align: center;
}

.faq-section {
    padding: 8rem 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.faq-item h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* Contact Page */
.contact-section {
    padding: 8rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-form-container h2,
.contact-info-container h2 {
    margin-bottom: 3rem;
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1.2rem;
    border: 1px solid var(--gray);
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1.6rem;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input {
    width: auto;
}

.contact-info {
    margin-bottom: 4rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

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

.contact-detail h3 {
    margin-bottom: 0.8rem;
}

.contact-social h3 {
    margin-bottom: 2rem;
}

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

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background-color: var(--light-bg);
    border-radius: 50%;
    color: var(--text-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-map {
    margin-top: 4rem;
}

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

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 300px;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-content {
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

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

.cookie-more {
    font-size: 1.4rem;
    margin-bottom: 0;
}

/* Feedback Button and Modal */
.feedback-btn-container {
    text-align: center;
    margin-top: 5rem;
}

.feedback-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.feedback-btn::before {
    content: '';
    display: inline-block;
    width: 1.8rem;
    height: 1.8rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a2 2 0 0 1-2 2H7l-4 4V5a2 2 0 0 1 2-2h14a2 2 0 0 1 2 2z'%3E%3C/path%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.feedback-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    display: none;
}

.feedback-modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    width: 100%;
    max-width: 500px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.4rem;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.rating {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.rating input {
    display: none;
}

.rating label {
    position: relative;
    width: 30px;
    height: 30px;
    cursor: pointer;
}

.rating label::before {
    content: '★';
    position: absolute;
    font-size: 30px;
    color: var(--gray);
}

.rating input:checked ~ label::before,
.rating:not(:checked) label:hover::before,
.rating:not(:checked) label:hover ~ label::before {
    color: var(--primary-color);
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    display: none;
}

.success-modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 4rem;
    width: 100%;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.success-icon {
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.success-modal-content h3 {
    margin-bottom: 1.5rem;
}

.success-modal-content p {
    margin-bottom: 3rem;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-0 {
    margin-top: 0;
}

.mb-0 {
    margin-bottom: 0;
}

.transparent-section {
    background-color: rgba(173, 110, 123, 0.1);
}

/* Responsive Styles */
@media (max-width: 1100px) {
    html {
        font-size: 58%;
    }
    
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 4rem;
    }
    
    .process-steps::before {
        display: none;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .service-card {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 55%;
    }
    
    header .container {
        flex-direction: column;
    }
    
    .logo {
        margin-bottom: 2rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    nav ul li {
        margin-left: 0;
    }
    
    .hero {
        padding: 8rem 0;
    }
    
    .hero-content h1 {
        font-size: 3.6rem;
    }
    
    .post-footer {
        flex-direction: column;
        gap: 2rem;
    }
    
    .post-tags,
    .post-share {
        justify-content: center;
    }
    
    .post-navigation {
        flex-direction: column;
        gap: 3rem;
    }
    
    .post-navigation-prev,
    .post-navigation-next {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 50%;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .feature-grid,
    .post-grid,
    .blog-grid,
    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
