/* Global Variables */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #A5D6A7;
    --secondary-color: #2196F3;
    --text-dark: #333333;
    --text-light: #757575;
    --background-light: #FFFFFF;
    --background-alt: #F9F9F9;
    --border-color: #E0E0E0;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FFC107;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 4px;
    --container-width: 1200px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

ul {
    list-style: none;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    border: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.btn:hover {
    background-color: var(--primary-dark);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

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

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

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

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

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

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

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 600;
}

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

.mobile-menu {
    display: none;
    cursor: pointer;
}

.mobile-menu div {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 5px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.hero-content {
    flex: 1;
    padding-right: 40px;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

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

.hero-image {
    flex: 1;
}

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

/* Services Overview */
.services-overview {
    padding: 80px 20px;
    background-color: var(--background-alt);
    text-align: center;
}

.services-overview h2 {
    margin-bottom: 2.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

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

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

.service-card h3 {
    margin: 1.5rem 0 0.5rem;
    padding: 0 1.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-card .btn-small {
    margin: 0 1.5rem 1.5rem;
}

/* Testimonials */
.testimonials {
    padding: 80px 20px;
    text-align: center;
}

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

.testimonial-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: var(--container-width);
    margin: 0 auto;
    padding-bottom: 20px;
}

.testimonial-slider::-webkit-scrollbar {
    height: 8px;
}

.testimonial-slider::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.testimonial-slider::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}

.testimonial {
    min-width: 300px;
    flex: 0 0 calc(33.333% - 20px);
    scroll-snap-align: start;
    background: white;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    padding: 30px;
    margin: 0 10px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
}

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

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

.client-info h4 {
    margin-bottom: 0.2rem;
}

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

/* This Day in History Section */
.this-day-history {
    padding: 60px 20px;
    background-color: var(--background-alt);
    text-align: center;
}

.this-day-history h2 {
    margin-bottom: 2rem;
}

.history-content {
    display: flex;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.history-image {
    flex: 1;
    max-width: 40%;
}

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

.history-text {
    flex: 1;
    padding: 30px;
    text-align: left;
}

.history-text h3 {
    margin-bottom: 1rem;
}

.history-text ul {
    list-style: none;
}

.history-text li {
    margin-bottom: 0.5rem;
}

/* Newsletter */
.newsletter {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: white;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.email-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.email-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius) 0 0 var(--border-radius);
    font-size: 1rem;
}

.email-form button {
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    background-color: var(--text-dark);
}

.email-form button:hover {
    background-color: #222;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-info h3,
.footer-contact h3,
.footer-links h3,
.footer-policies h3,
.footer-social h3 {
    color: white;
    margin-bottom: 1.2rem;
    font-size: 1.2rem;
}

.footer-info p,
.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-links ul,
.footer-policies ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a,
.footer-policies a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

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

.social-icons a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d2d2d;
    color: white;
    padding: 15px 20px;
    z-index: 1000;
    display: flex;
    justify-content: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-banner a {
    color: var(--primary-light);
    text-decoration: underline;
    font-size: 0.9rem;
}

.cookie-banner a:hover {
    color: white;
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.page-header h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

/* Blog Page Styles */
.blog-container {
    padding: 60px 20px;
    max-width: var(--container-width);
    margin: 0 auto;
}

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

.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.blog-content {
    padding: 20px;
}

.blog-date {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.blog-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

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

/* Blog Post Page */
.blog-post-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    max-width: var(--container-width);
    margin: 40px auto;
    padding: 0 20px;
}

.blog-post {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.post-header {
    padding: 30px 30px 0;
}

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

.post-featured-image {
    margin-bottom: 30px;
}

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

.post-content {
    padding: 0 30px 30px;
}

.post-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

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

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

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

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

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

.post-image {
    margin: 30px 0;
    border-radius: 8px;
    overflow: hidden;
}

.post-cta {
    background-color: var(--background-alt);
    border-radius: 8px;
    padding: 30px;
    margin-top: 40px;
    text-align: center;
}

.post-cta h3 {
    margin-bottom: 15px;
}

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

.post-navigation {
    border-top: 1px solid var(--border-color);
    padding: 20px 30px;
}

.post-nav-links {
    display: flex;
    justify-content: space-between;
}

.prev-post, 
.next-post, 
.back-to-blog {
    font-weight: 600;
}

/* Blog Sidebar */
.blog-sidebar {
    align-self: start;
}

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

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

.sidebar-widget ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-widget a {
    color: var(--text-dark);
    transition: var(--transition);
}

.sidebar-widget a:hover, 
.sidebar-widget a.active {
    color: var(--primary-color);
}

.sidebar-widget .btn {
    margin-top: 20px;
    display: block;
    text-align: center;
}

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

.intro-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.service-section.alt-bg {
    background-color: var(--background-alt);
}

.service-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.service-content.reverse {
    flex-direction: row-reverse;
}

.service-text {
    flex: 1;
}

.service-text h2 {
    margin-bottom: 20px;
}

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

.service-features {
    margin-bottom: 30px;
    list-style-type: none;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.pricing-section {
    padding: 80px 20px;
    background-color: var(--background-alt);
    text-align: center;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.pricing-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 3;
}

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

.most-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    margin-bottom: 15px;
}

.price {
    font-size: 1.1rem;
    margin-bottom: 25px;
}

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

.pricing-card ul {
    text-align: left;
    margin-bottom: 25px;
    list-style-type: none;
}

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

.pricing-card ul li:before {
    content: "✓";
    color: var(--primary-color);
    position: absolute;
    left: 0;
}

.pricing-note {
    max-width: 700px;
    margin: 30px auto 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

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

.cta-section h2 {
    color: white;
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.cta-section .btn:hover {
    background-color: var(--text-dark);
    color: white;
}

.cta-section .btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}

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

/* About Page Styles */
.about-intro {
    padding: 60px 20px;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

.about-text {
    flex: 1;
}

.about-text h2 {
    margin-bottom: 20px;
}

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

.mission-values {
    padding: 80px 20px;
    background-color: var(--background-alt);
}

.mission-box {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.mission-box h2 {
    margin-bottom: 20px;
}

.mission-box p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.value-card {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

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

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

.value-card h3 {
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-light);
    margin-bottom: 0;
}

.team-section {
    padding: 80px 20px;
    text-align: center;
}

.team-section h2 {
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 40px auto 0;
}

.team-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

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

.team-card p {
    padding: 0 20px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 0 20px 20px;
}

.team-social a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.achievements {
    padding: 80px 20px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.achievements h2 {
    color: white;
    margin-bottom: 40px;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 30px;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievement-card p {
    margin-bottom: 0;
    opacity: 0.9;
}

.certifications {
    padding: 80px 20px;
    text-align: center;
}

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

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.certification-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

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

.certification-card h3 {
    margin: 20px 20px 10px;
}

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

/* Contact Page Styles */
.contact-section {
    padding: 60px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.contact-info {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

.contact-info h3 {
    margin-bottom: 20px;
}

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

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

.info-icon {
    margin-right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    flex-shrink: 0;
}

.info-text h4 {
    margin-bottom: 5px;
}

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

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

.info-text a:hover {
    color: var(--primary-color);
}

.hours, 
.response-time {
    font-size: 0.9rem;
    color: var(--text-light);
}

.social-contact h4 {
    margin-bottom: 15px;
}

.social-contact .social-icons {
    justify-content: flex-start;
}

.contact-form-container {
    background: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
}

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

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 0;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 1rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-light);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    grid-column: 1 / -1;
}

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

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

.map-section {
    padding: 60px 20px;
    background-color: var(--background-alt);
}

.map-section h3 {
    text-align: center;
    margin-bottom: 30px;
}

.map-container {
    max-width: var(--container-width);
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.faq-section {
    padding: 60px 20px;
}

.faq-section h3 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: var(--box-shadow);
}

.faq-item h4 {
    margin-bottom: 15px;
}

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

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1100;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 500px;
    position: relative;
    animation: modalOpen 0.3s ease-out;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
}

.thank-you-content {
    text-align: center;
}

.thank-you-content svg {
    color: var(--success-color);
    margin-bottom: 20px;
}

.thank-you-content h3 {
    margin-bottom: 15px;
}

.thank-you-content p {
    margin-bottom: 25px;
    color: var(--text-light);
}

.close-btn {
    display: inline-block;
}

/* Icons */
[class^="icon-"] {
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 0.3em;
}

.icon-location:before {
    content: "📍";
}

.icon-phone:before {
    content: "📞";
}

.icon-mail:before {
    content: "✉️";
}

.icon-check:before {
    content: "✓";
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .service-content {
        flex-direction: column;
        text-align: center;
    }
    
    .service-content.reverse {
        flex-direction: column;
    }
    
    .service-text {
        order: 2;
    }
    
    .service-image {
        order: 1;
        margin-bottom: 30px;
    }
    
    .service-features li {
        justify-content: center;
    }
    
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .history-content {
        flex-direction: column;
    }
    
    .history-image {
        max-width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form-container {
        order: 1;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background-color: white;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 20px 0;
    }
    
    .mobile-menu {
        display: block;
        z-index: 1002;
    }
    
    .mobile-menu.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .mobile-menu.active .line2 {
        opacity: 0;
    }
    
    .mobile-menu.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .testimonial {
        flex: 0 0 calc(100% - 20px);
    }
    
    .email-form {
        flex-direction: column;
    }
    
    .email-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .email-form button {
        border-radius: var(--border-radius);
    }
    
    .blog-post-container {
        grid-template-columns: 1fr;
    }
    
    .blog-post {
        margin-bottom: 40px;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 480px) {
    .post-header {
        padding: 20px 20px 0;
    }
    
    .post-content {
        padding: 0 20px 20px;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 5px;
    }
    
    .post-navigation {
        padding: 15px 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        padding: 10px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
}
