/* 
Main Stylesheet for StyleSphere
*/

/* ===== VARIABLES ===== */
:root {
    /* Color palette */
    --primary-color: #b87333;
    --primary-light: #d4a975;
    --primary-dark: #865224;
    --secondary-color: #204e4a;
    --secondary-light: #3a6b66;
    --secondary-dark: #123430;
    --accent-color: #e9b44c;
    --light-color: #f5f5f5;
    --dark-color: #333333;
    --gray-color: #777777;
    --light-gray: #eeeeee;
    --mid-gray: #bbbbbb;
    --dark-gray: #555555;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --info-color: #2196f3;
    
    /* Typography */
    --heading-font: 'Playfair Display', Georgia, serif;
    --body-font: 'Lato', 'Segoe UI', sans-serif;
    --mono-font: 'Courier New', monospace;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.5rem;
    --space-xxl: 4rem;
    
    /* Borders */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    --border-radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Container widths */
    --container-sm: 540px;
    --container-md: 720px;
    --container-lg: 960px;
    --container-xl: 1140px;
}

/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) var(--light-gray);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 10px;
    border: 2px solid var(--light-gray);
}

::-webkit-scrollbar-thumb:hover {
    background-color: var(--primary-dark);
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    overflow-x: hidden;
}

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

h1 {
    font-size: 2.5rem;
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: 2rem;
    position: relative;
    margin-bottom: var(--space-xl);
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.2rem;
}

p {
    margin-bottom: var(--space-md);
}

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

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

ul, ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-xl);
}

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

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 var(--space-md);
}

section {
    padding: var(--space-xl) 0;
}

.page-banner {
    background-color: var(--secondary-color);
    color: white;
    padding: var(--space-xxl) 0;
    text-align: center;
}

.page-banner h1 {
    color: white;
    margin-bottom: var(--space-sm);
}

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-family: var(--body-font);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

.btn.secondary:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: white;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
}

.logo img {
    height: 60px;
    width: auto;
}

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

nav ul li {
    margin-left: var(--space-lg);
}

nav ul li a {
    color: var(--dark-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: var(--space-sm) 0;
}

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

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

nav ul li a.active {
    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: white;
    text-align: center;
    padding: var(--space-xxl) 0;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: var(--space-lg);
    color: white;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

/* ===== EVENT COUNTDOWN ===== */
.event-countdown {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: var(--space-xl) 0;
}

.event-countdown h2 {
    color: white;
}

.event-countdown h2:after {
    left: 50%;
    transform: translateX(-50%);
}

#countdown {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-item span:first-child {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: var(--space-sm);
}

/* ===== SERVICES PREVIEW ===== */
.services-preview h2,
.blog-preview h2 {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.services-preview h2:after,
.blog-preview h2:after {
    left: 50%;
    transform: translateX(-50%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

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

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

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

.service-card h3,
.service-card p {
    padding: 0 var(--space-md);
}

.service-card h3 {
    margin-top: var(--space-md);
    font-size: 1.3rem;
}

.read-more {
    display: inline-block;
    margin: var(--space-md);
    font-weight: 600;
    position: relative;
}

.read-more:after {
    content: '→';
    margin-left: var(--space-xs);
    transition: transform var(--transition-fast);
}

.read-more:hover:after {
    transform: translateX(5px);
}

/* ===== BLOG PREVIEW ===== */
.blog-preview {
    background-color: var(--light-gray);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
}

.blog-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

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

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

.blog-content {
    padding: var(--space-md);
}

.date {
    color: var(--gray-color);
    font-size: 0.9rem;
    margin-bottom: var(--space-sm);
    display: block;
}

.blog-link {
    text-align: center;
    margin-top: var(--space-xl);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background-color: var(--secondary-light);
    color: white;
}

.testimonials h2 {
    text-align: center;
    color: white;
}

.testimonials h2:after {
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
}

.testimonial-slider {
    display: flex;
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.testimonial-item {
    background-color: rgba(255, 255, 255, 0.1);
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    flex: 1;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: var(--space-lg);
    position: relative;
    padding: 0 var(--space-md);
}

.testimonial-content p:before,
.testimonial-content p:after {
    content: '"';
    font-family: Georgia, serif;
    font-size: 3rem;
    position: absolute;
    color: rgba(255, 255, 255, 0.3);
}

.testimonial-content p:before {
    top: -20px;
    left: -10px;
}

.testimonial-content p:after {
    bottom: -40px;
    right: -10px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-info img {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-full);
    margin-right: var(--space-md);
    object-fit: cover;
}

.client-info h4 {
    margin-bottom: 0;
    color: white;
}

.client-info p {
    margin-bottom: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--dark-color);
    color: white;
    padding: var(--space-xl) 0 var(--space-md);
}

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

.footer-logo img {
    height: 60px;
    margin-bottom: var(--space-md);
}

.footer-links h3,
.footer-contact h3,
.footer-social h3 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

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

.footer-links ul li {
    margin-bottom: var(--space-sm);
}

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

.footer-links ul li a:hover {
    color: white;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: var(--space-sm);
}

.icon {
    width: 20px;
    height: 20px;
    margin-right: var(--space-sm);
    fill: var(--primary-light);
}

.social-icons {
    display: flex;
    gap: var(--space-md);
}

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

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

.social-icons svg {
    width: 20px;
    height: 20px;
    fill: white;
}

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

.footer-policy-links {
    display: flex;
    gap: var(--space-md);
}

.footer-policy-links a {
    color: var(--mid-gray);
    font-size: 0.9rem;
}

.footer-policy-links a:hover {
    color: white;
}

/* ===== COOKIE CONSENT ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: var(--space-md);
    display: flex;
    justify-content: center;
}

.cookie-content {
    max-width: var(--container-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin-bottom: var(--space-md);
}

.cookie-buttons {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
}

.cookie-btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.cookie-link {
    font-size: 0.9rem;
    color: var(--gray-color);
}

.cookie-link a {
    text-decoration: underline;
}

/* ===== ABOUT PAGE ===== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

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

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin: var(--space-xl) 0;
}

.mission-item {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.mission-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.mission-item ul {
    padding-left: var(--space-lg);
}

.team-section {
    background-color: var(--light-gray);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.team-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

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

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

.team-card h3, 
.team-card p {
    padding: 0 var(--space-md);
}

.team-card h3 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
}

.team-card p:first-of-type {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
}

.team-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-full);
    background-color: var(--light-gray);
    transition: all var(--transition-normal);
}

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

.team-social svg {
    width: 18px;
    height: 18px;
    fill: var(--dark-color);
    transition: fill var(--transition-normal);
}

.team-social a:hover svg {
    fill: white;
}

.credentials {
    padding: var(--space-xxl) 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
}

.credential-item {
    text-align: center;
    padding: var(--space-lg);
}

.credential-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.credential-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.credential-item h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

/* ===== SERVICES PAGE ===== */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
    align-items: center;
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse .service-content {
    direction: ltr;
}

.service-image img {
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-sm);
}

.service-content h4 {
    font-size: 1.1rem;
    margin: var(--space-md) 0 var(--space-sm);
}

.service-price {
    margin-top: var(--space-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    border-top: 1px solid var(--light-gray);
}

.service-price p {
    margin-bottom: 0;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.service-price p span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray-color);
    display: block;
}

.additional-services {
    background-color: var(--light-gray);
    text-align: center;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.additional-service-card {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

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

.service-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--space-md);
}

.service-icon svg {
    width: 100%;
    height: 100%;
    fill: var(--primary-color);
}

.additional-service-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.service-mini-price {
    font-weight: 700;
    color: var(--secondary-color);
    margin-top: var(--space-md);
}

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

.process-grid {
    display: flex;
    justify-content: space-between;
    margin-top: var(--space-xl);
    position: relative;
}

.process-grid:before {
    content: '';
    position: absolute;
    top: 30px;
    left: 50px;
    right: 50px;
    height: 2px;
    background-color: var(--light-gray);
    z-index: -1;
}

.process-step {
    flex: 1;
    max-width: 200px;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: var(--border-radius-full);
    background-color: var(--primary-color);
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-md);
}

.process-step h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
}

.faqs-section {
    background-color: var(--light-gray);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.faq-item {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-sm);
    color: var(--primary-color);
}

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

.cta-section h2 {
    color: white;
}

.cta-section h2:after {
    background-color: white;
    left: 50%;
    transform: translateX(-50%);
}

.cta-section p {
    margin-bottom: var(--space-lg);
    font-size: 1.2rem;
}

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

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

/* ===== BLOG PAGE ===== */
.blog-main {
    padding-top: var(--space-xl);
}

.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
}

.blog-post-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal);
}

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

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

.post-content {
    padding: var(--space-md) var(--space-md) var(--space-md) 0;
}

.post-meta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 0.9rem;
    color: var(--gray-color);
}

.post-category {
    color: var(--primary-color);
}

.post-content h2 {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.post-content h2:after {
    display: none;
}

.post-content h2 a {
    color: var(--dark-color);
}

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

.excerpt {
    margin-bottom: var(--space-md);
}

.sidebar-widget {
    background-color: white;
    padding: var(--space-lg);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--space-xl);
    box-shadow: var(--shadow-sm);
}

.sidebar-widget h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--light-gray);
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-list li {
    margin-bottom: var(--space-sm);
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid var(--light-gray);
}

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

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

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.mini-post {
    display: flex;
    gap: var(--space-md);
}

.mini-post-image {
    flex: 0 0 80px;
}

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

.mini-post-content h4 {
    font-size: 1rem;
    margin-bottom: var(--space-xs);
}

.mini-post-date {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.sidebar-form p {
    margin-bottom: var(--space-md);
}

.form-group {
    margin-bottom: var(--space-md);
}

.form-group input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: 1rem;
}

.sidebar-social {
    display: flex;
    gap: var(--space-sm);
}

.sidebar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--border-radius-full);
    background-color: var(--light-gray);
    transition: all var(--transition-normal);
}

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

.sidebar-social svg {
    width: 20px;
    height: 20px;
    fill: var(--dark-color);
    transition: fill var(--transition-normal);
}

.sidebar-social a:hover svg {
    fill: white;
}

/* ===== BLOG POST PAGE ===== */
.blog-post {
    padding: var(--space-xl) 0;
}

.post-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
}

.post-header {
    margin-bottom: var(--space-lg);
}

.post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0;
}

.post-featured-image {
    margin-bottom: var(--space-lg);
    border-radius: var(--border-radius-md);
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.post-body {
    margin-bottom: var(--space-xl);
}

.post-body h2, 
.post-body h3, 
.post-body h4 {
    margin-top: var(--space-xl);
}

.post-body h2:after {
    display: none;
}

.post-body ul, 
.post-body ol {
    margin-left: var(--space-md);
    margin-bottom: var(--space-md);
}

.post-body li {
    margin-bottom: var(--space-sm);
}

.post-footer {
    display: flex;
    justify-content: space-between;
    padding: var(--space-md) 0;
    border-top: 1px solid var(--light-gray);
    border-bottom: 1px solid var(--light-gray);
    margin-bottom: var(--space-xl);
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    align-items: center;
}

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

.post-tags a {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background-color: var(--light-gray);
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
    transition: all var(--transition-normal);
}

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

.post-share {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

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

.post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-full);
    background-color: var(--light-gray);
    transition: all var(--transition-normal);
}

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

.post-share svg {
    width: 18px;
    height: 18px;
    fill: var(--dark-color);
    transition: fill var(--transition-normal);
}

.post-share a:hover svg {
    fill: white;
}

.author-bio {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background-color: var(--light-gray);
    border-radius: var(--border-radius-md);
    margin-bottom: var(--space-xl);
}

.author-image {
    flex: 0 0 100px;
}

.author-image img {
    width: 100px;
    height: 100px;
    border-radius: var(--border-radius-full);
    object-fit: cover;
}

.author-info h3 {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: var(--space-xs);
}

.author-info h4 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}

.related-posts h3 {
    margin-bottom: var(--space-lg);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.related-post {
    overflow: hidden;
}

.related-post img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--border-radius-sm);
    transition: transform var(--transition-normal);
}

.related-post a:hover img {
    transform: scale(1.05);
}

.related-post h4 {
    font-size: 1rem;
    margin: var(--space-sm) 0 var(--space-xs);
}

.related-date {
    font-size: 0.8rem;
    color: var(--gray-color);
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-xxl);
}

.info-item {
    display: flex;
    margin-bottom: var(--space-lg);
}

.info-icon {
    flex: 0 0 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.info-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-color);
}

.info-content h3 {
    font-size: 1.1rem;
    margin-bottom: var(--space-xs);
}

.info-content p {
    margin-bottom: var(--space-xs);
}

.social-contact {
    margin-top: var(--space-xl);
}

.contact-form-container {
    background-color: white;
    padding: var(--space-xl);
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form label {
    display: block;
    margin-bottom: var(--space-xs);
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius-sm);
    font-family: var(--body-font);
    font-size: 1rem;
    margin-bottom: var(--space-md);
}

.contact-form textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.checkbox-group input {
    width: auto;
    margin-top: 0.25rem;
    margin-bottom: 0;
}

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

.map-container {
    height: 450px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    margin-top: var(--space-lg);
}

.contact-faq {
    background-color: var(--light-gray);
}

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

.modal-content {
    background-color: white;
    padding: var(--space-xl);
    border-radius: var(--border-radius-md);
    max-width: 500px;
    width: 90%;
    position: relative;
    text-align: center;
}

.close-modal {
    position: absolute;
    top: var(--space-sm);
    right: var(--space-md);
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--gray-color);
}

.success-icon {
    width: 60px;
    height: 60px;
    fill: var(--success-color);
    margin: 0 auto var(--space-md);
}

.thank-you-message h2 {
    margin-bottom: var(--space-md);
}

.thank-you-message h2:after {
    display: none;
}

.close-btn {
    margin-top: var(--space-md);
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .service-item,
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item.reverse {
        direction: ltr;
    }
    
    .process-grid {
        flex-direction: column;
        align-items: center;
        gap: var(--space-xl);
    }
    
    .process-grid:before {
        display: none;
    }
    
    .post-layout,
    .blog-layout {
        grid-template-columns: 1fr;
    }
    
    .testimonial-slider {
        flex-direction: column;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 var(--space-sm);
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1.2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: var(--space-sm);
    }
    
    #countdown {
        gap: var(--space-md);
    }
    
    .countdown-item span:first-child {
        font-size: 2rem;
    }
    
    .blog-post-card {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-policy-links {
        justify-content: center;
    }
    
    .post-footer {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .author-bio {
        flex-direction: column;
        text-align: center;
    }
    
    .author-image {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    section {
        padding: var(--space-lg) 0;
    }
    
    .container {
        padding: 0 var(--space-sm);
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease forwards;
}
