/* Plain Portion - Professional Makeup Artistry Website */
/* Main Stylesheet */

/* Base & Reset */
:root {
    --primary-color: #c4387a;
    --primary-dark: #a7286a;
    --primary-light: #e979a8;
    --secondary-color: #41264e;
    --secondary-light: #61396e;
    --accent-color: #f2c94c;
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #999999;
    --white: #ffffff;
    --off-white: #f9f7f8;
    --gray-light: #f0ecee;
    --gray-medium: #e0d9dd;
    --black: #222222;
    --success: #4caf50;
    --error: #f44336;
    --warning: #ff9800;
    --info: #2196f3;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --box-shadow-large: 0 6px 12px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --border-radius-large: 8px;
    --container-width: 1200px;
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
    border: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 20px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.alt-bg {
    background-color: var(--off-white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

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

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

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

.btn-tertiary {
    background-color: transparent;
    color: var(--text-medium);
    border: 2px solid var(--gray-medium);
}

.btn-tertiary:hover {
    background-color: var(--gray-medium);
    color: var(--text-dark);
}

/* Header & Navigation */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--box-shadow);
    padding: 15px 0;
}

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

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

.logo a {
    display: flex;
    align-items: center;
    color: var(--secondary-color);
}

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

.logo h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 600;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 8px 0;
    position: relative;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 550px;
}

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

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-medium);
}

.hero-image {
    flex: 0 0 45%;
}

.hero-image img {
    border-radius: var(--border-radius-large);
    box-shadow: var(--box-shadow-large);
}

/* Services Preview */
.services-preview {
    text-align: center;
}

.services-preview h2 {
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

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

.service-card h3 {
    margin-top: 20px;
    font-size: 1.3rem;
}

.service-card p {
    padding: 0 20px;
    color: var(--text-medium);
    margin-bottom: 25px;
}

.service-card .btn {
    margin-bottom: 25px;
}

/* Featured Posts */
.featured-posts {
    background-color: var(--off-white);
    text-align: center;
}

.featured-posts h2 {
    margin-bottom: 40px;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

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

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

.post-content {
    padding: 25px;
}

.post-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.post-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 15px;
    display: block;
}

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

.read-more {
    font-weight: 500;
    color: var(--primary-color);
    display: inline-block;
    position: relative;
}

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

.read-more:hover::after {
    margin-left: 10px;
}

.view-all {
    margin-top: 40px;
}

/* Testimonials */
.testimonials {
    text-align: center;
}

.testimonials h2 {
    margin-bottom: 40px;
}

.testimonials-slider {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.testimonial {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--white);
    border-radius: var(--border-radius-large);
    padding: 30px;
    box-shadow: var(--box-shadow);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-family: var(--font-secondary);
    font-size: 5rem;
    position: absolute;
    top: -20px;
    left: 20px;
    color: var(--primary-light);
    opacity: 0.2;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.client-info h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    margin-bottom: 5px;
}

.client-info p {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 0;
}

/* Call to Action */
.cta {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: var(--gray-light);
    max-width: 700px;
    margin: 0 auto 30px;
}

/* Footer */
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

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

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.5rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links ul li {
    margin-bottom: 10px;
}

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

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

.footer-contact p {
    margin-bottom: 10px;
    color: var(--gray-light);
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--primary-light);
}

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

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

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

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

.copyright {
    color: var(--text-light);
    font-size: 0.875rem;
}

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

.legal-links a {
    color: var(--text-light);
    font-size: 0.875rem;
}

.legal-links a:hover {
    color: var(--primary-light);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--white);
    box-shadow: var(--box-shadow-large);
    border-radius: var(--border-radius);
    padding: 20px;
    z-index: 9999;
    display: none;
}

.cookie-notice.show {
    display: block;
}

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

.cookie-content p {
    margin-bottom: 15px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.cookie-more-info {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* Blog Page Styles */
.page-banner {
    background-color: var(--secondary-color);
    color: var(--white);
    text-align: center;
    padding: 60px 0;
}

.page-banner h2 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-banner p {
    color: var(--gray-light);
    margin-bottom: 0;
    font-size: 1.1rem;
}

.blog-content .container {
    display: grid;
    grid-template-columns: 70% 30%;
    gap: 40px;
}

.blog-post {
    margin-bottom: 60px;
}

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

.post-image img {
    width: 100%;
    border-radius: var(--border-radius-large);
    margin-bottom: 25px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 0.875rem;
}

.post-body h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.post-body p {
    margin-bottom: 20px;
}

.post-body ul, .post-body ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.post-body ul li, .post-body ol li {
    margin-bottom: 10px;
}

.post-body ul {
    list-style-type: disc;
}

.post-body ol {
    list-style-type: decimal;
}

.post-tags {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.post-tags span {
    color: var(--text-medium);
    font-weight: 500;
}

.post-tags a {
    background-color: var(--gray-light);
    color: var(--text-medium);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.813rem;
    transition: var(--transition);
}

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

.sidebar-widget {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.sidebar-widget:last-child {
    margin-bottom: 0;
}

.sidebar-widget h3 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray-medium);
}

.category-list li {
    margin-bottom: 12px;
}

.category-list li a {
    display: flex;
    justify-content: space-between;
    color: var(--text-medium);
    transition: var(--transition);
}

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

.popular-post {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.popular-post:last-child {
    margin-bottom: 0;
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.popular-post h4 {
    font-size: 0.938rem;
    margin-bottom: 5px;
}

.popular-post p {
    margin-bottom: 0;
    font-size: 0.813rem;
    color: var(--text-light);
}

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

.newsletter-form input {
    padding: 12px;
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
}

/* Services Page Styles */
.services-intro {
    text-align: center;
}

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

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

.service-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    align-items: center;
}

.service-content.reverse {
    grid-template-columns: 55% 45%;
}

.service-content.reverse .service-image {
    order: 2;
}

.service-content.reverse .service-details {
    order: 1;
}

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

.service-details h2 {
    margin-bottom: 15px;
}

.service-description {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.service-features {
    margin-bottom: 30px;
}

.service-features h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-features ul {
    list-style-type: disc;
    padding-left: 20px;
}

.service-features ul li {
    margin-bottom: 10px;
    color: var(--text-medium);
}

.pricing {
    margin-bottom: 30px;
}

.pricing h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.price-option {
    background-color: var(--off-white);
    border-radius: var(--border-radius);
    padding: 15px 20px;
    margin-bottom: 15px;
}

.price-option h4 {
    font-family: var(--font-primary);
    font-size: 1rem;
    margin-bottom: 5px;
}

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

.price-option p {
    margin-bottom: 0;
    color: var(--text-medium);
    font-size: 0.938rem;
}

/* Portfolio Page Styles */
.portfolio-intro {
    text-align: center;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    background-color: transparent;
    border: 2px solid var(--gray-medium);
    color: var(--text-medium);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    transition: var(--transition);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.item-image {
    position: relative;
    overflow: hidden;
}

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

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

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(65, 38, 78, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.overlay-content {
    text-align: center;
    padding: 20px;
    color: var(--white);
}

.overlay-content h3 {
    color: var(--white);
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.overlay-content p {
    margin-bottom: 15px;
    font-size: 0.875rem;
}

.view-details {
    color: var(--accent-color);
    font-weight: 500;
    cursor: pointer;
    position: relative;
}

.view-details::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--accent-color);
}

.portfolio-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 1001;
    overflow-y: auto;
}

.modal-content {
    background-color: var(--white);
    max-width: 900px;
    margin: 50px auto;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    color: var(--white);
    background-color: rgba(0, 0, 0, 0.5);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
}

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

.modal-details {
    padding: 30px;
}

.modal-details h3 {
    margin-bottom: 15px;
}

.modal-details p {
    color: var(--text-medium);
    margin-bottom: 25px;
}

.modal-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.meta-item h4 {
    font-family: var(--font-primary);
    font-size: 0.938rem;
    margin-bottom: 5px;
    color: var(--text-light);
}

.meta-item p {
    margin-bottom: 0;
    color: var(--text-dark);
}

.client-testimonials {
    background-color: var(--off-white);
}

/* About Us Page Styles */
.about-content {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 50px;
    align-items: center;
}

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

.philosophy {
    background-color: var(--off-white);
    text-align: center;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto;
}

.philosophy-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.pillar {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 30px 20px;
    box-shadow: var(--box-shadow);
}

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

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--white);
    border-radius: var(--border-radius-large);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
}

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

.team-member h3 {
    margin: 20px 0 5px;
}

.team-member > p:first-of-type {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 15px;
}

.team-member > p:last-of-type {
    padding: 0 20px;
    margin-bottom: 20px;
    color: var(--text-medium);
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.member-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--gray-light);
    color: var(--secondary-color);
    transition: var(--transition);
}

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

.credentials-content {
    display: grid;
    grid-template-columns: 55% 45%;
    gap: 40px;
    align-items: center;
}

.credentials-image img {
    border-radius: var(--border-radius-large);
    box-shadow: var(--box-shadow);
}

.credentials-list {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 30px;
}

.credentials-list li {
    margin-bottom: 10px;
    color: var(--text-medium);
}

.awards-affiliations {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.awards h3, .affiliations h3 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.awards ul, .affiliations ul {
    list-style-type: disc;
    padding-left: 20px;
}

.awards ul li, .affiliations ul li {
    margin-bottom: 10px;
    color: var(--text-medium);
}

/* Contact Page Styles */
.contact-info-form {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 50px;
}

.contact-info {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-large);
}

.contact-info h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--gray-light);
    margin-bottom: 30px;
}

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

.info-icon {
    flex: 0 0 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.info-content h3 {
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-content p {
    margin-bottom: 5px;
}

.info-content .note {
    font-size: 0.813rem;
    color: var(--primary-light);
}

.info-content .social-icons {
    margin-top: 10px;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-large);
    box-shadow: var(--box-shadow);
}

.contact-form h2 {
    margin-bottom: 30px;
}

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

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

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-medium);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

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

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

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

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
}

.map-section {
    text-align: center;
}

.map-container {
    margin-top: 30px;
    border-radius: var(--border-radius-large);
    overflow: hidden;
    position: relative;
}

.map-placeholder {
    position: relative;
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

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

.map-container:hover .map-overlay {
    opacity: 1;
}

.faq-section {
    background-color: var(--off-white);
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
    flex: 1;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-answer {
    padding: 0 20px 20px;
    display: none;
}

.faq-answer p {
    margin-bottom: 0;
    color: var(--text-medium);
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.thank-you-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1001;
    align-items: center;
    justify-content: center;
}

.thank-you-modal .modal-content {
    background-color: var(--white);
    border-radius: var(--border-radius-large);
    padding: 40px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

.thank-you-modal .close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--text-medium);
    background-color: var(--gray-light);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.modal-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.response-time {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 25px;
}

/* Comparison Table */
.comparison-table {
    text-align: center;
    margin: 60px 0;
}

.table-container {
    margin-top: 40px;
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: var(--box-shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

thead {
    background-color: var(--secondary-color);
    color: var(--white);
}

th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

tr:nth-child(even) {
    background-color: var(--gray-light);
}

td {
    padding: 15px;
    border-bottom: 1px solid var(--gray-medium);
    text-align: left;
}

tr:last-child td {
    border-bottom: none;
}

/* Glossary Section */
.glossary {
    background-color: var(--off-white);
    text-align: center;
}

.glossary-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
    text-align: left;
}

.glossary-item {
    background-color: var(--white);
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
}

.glossary-item h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.glossary-item p {
    margin-bottom: 0;
    font-size: 0.938rem;
    color: var(--text-medium);
}

/* Icons */
.icon-check::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
}

.icon-times::before {
    content: '✕';
    color: var(--error);
    font-weight: bold;
}

.icon-location::before {
    content: '📍';
    margin-right: 5px;
}

.icon-phone::before {
    content: '📞';
    margin-right: 5px;
}

.icon-email::before {
    content: '📧';
    margin-right: 5px;
}

.icon-company::before {
    content: '🏢';
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .glossary-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .services-grid, 
    .posts-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonial {
        flex: 0 0 100%;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .blog-content .container {
        grid-template-columns: 100%;
    }
    
    .blog-sidebar {
        margin-top: 60px;
    }
    
    .service-content,
    .service-content.reverse,
    .about-content,
    .credentials-content,
    .contact-info-form {
        grid-template-columns: 100%;
    }
    
    .service-content.reverse .service-image {
        order: 1;
    }
    
    .service-content.reverse .service-details {
        order: 2;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .glossary-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .hero {
        padding: 60px 0;
    }
    
    .hero .container {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-image {
        flex: 0 0 100%;
    }
    
    .services-grid, 
    .posts-grid,
    .philosophy-pillars,
    .gallery-grid {
        grid-template-columns: 100%;
    }
    
    .modal-meta {
        grid-template-columns: 100%;
        gap: 15px;
    }
    
    .awards-affiliations {
        grid-template-columns: 100%;
        gap: 20px;
    }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 250px;
        height: 100vh;
        background-color: var(--white);
        box-shadow: var(--box-shadow);
        padding: 80px 20px 20px;
        transition: var(--transition);
        z-index: 990;
    }
    
    nav.active {
        right: 0;
    }
    
    nav ul {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0 0 20px;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 995;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .team-grid {
        grid-template-columns: 100%;
    }
    
    .footer-content,
    .footer-bottom {
        grid-template-columns: 100%;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        justify-content: center;
    }
    
    .glossary-content {
        grid-template-columns: 100%;
    }
}

@media (max-width: 576px) {
    .hero-content h2 {
        font-size: 1.75rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .portfolio-filters {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-btn {
        width: 100%;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}
