/* Base Styles */
:root {
    --primary-color: #3498db;
    --primary-dark: #2980b9;
    --secondary-color: #2ecc71;
    --secondary-dark: #27ae60;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-color: #fff;
    --bg-light: #f5f7fa;
    --bg-dark: #2c3e50;
    --border-color: #ddd;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --border-radius: 4px;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --header-height: 80px;
    --footer-bg: #2c3e50;
    --footer-text: #ecf0f1;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --primary-color: #4dabf7;
    --primary-dark: #339af0;
    --secondary-color: #51cf66;
    --secondary-dark: #40c057;
    --accent-color: #ff6b6b;
    --text-color: #f8f9fa;
    --text-light: #ced4da;
    --bg-color: #212529;
    --bg-light: #343a40;
    --bg-dark: #1a1d20;
    --border-color: #495057;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

* {
    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-color);
    background-color: var(--bg-color);
    transition: var(--transition);
}

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

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

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

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

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

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

.center-btn {
    text-align: center;
    margin: 30px 0;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 20px;
}

ul, ol {
    margin: 0 0 20px 20px;
}

/* Header Styles */
header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

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

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

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

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

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: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.theme-toggle {
    cursor: pointer;
    margin-left: 20px;
    font-size: 1.2rem;
    color: var(--text-color);
    transition: var(--transition);
}

.theme-toggle:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    background-color: var(--bg-light);
    text-align: center;
    padding: 100px 0;
    position: relative;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-light);
}

/* Features Section */
.features {
    background-color: var(--bg-color);
}

.features h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

.feature-item {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.feature-item h3 {
    margin-bottom: 15px;
}

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

/* Recent Posts Section */
.recent-posts h2 {
    text-align: center;
    margin-bottom: 50px;
}

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

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

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

.post-content {
    padding: 20px;
}

.post-content h3 {
    margin-bottom: 10px;
}

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

.read-more {
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
}

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

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

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

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

.testimonial-slider {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

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

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

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

.testimonial-author h4 {
    margin-bottom: 5px;
}

.testimonial-author p {
    margin-bottom: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--primary-color);
    color: white;
    text-align: center;
    padding: 60px 0;
}

.newsletter h2 {
    margin-bottom: 15px;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

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

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

.newsletter-form button {
    background-color: var(--secondary-color);
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.newsletter-form button:hover {
    background-color: var(--secondary-dark);
}

/* Blog Newsletter Section */
.blog-newsletter {
    background-color: var(--bg-light);
    color: var(--text-color);
    margin-top: 50px;
}

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

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

/* Footer Styles */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 70px 0 20px;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

.footer-logo p {
    opacity: 0.8;
}

.footer-links h3,
.footer-legal h3,
.footer-contact h3 {
    margin-bottom: 20px;
    color: white;
}

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

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

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

.footer-links a:hover,
.footer-legal a:hover {
    opacity: 1;
    color: white;
}

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

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

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

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

.social-icons {
    display: flex;
}

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

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

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

.page-header h1 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-light);
}

/* Blog Content */
.blog-content {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
}

.blog-filter {
    width: 250px;
    flex-shrink: 0;
}

.blog-filter h3 {
    margin-bottom: 20px;
}

.blog-filter ul {
    list-style: none;
    margin: 0;
}

.blog-filter li {
    margin-bottom: 10px;
}

.blog-filter a {
    color: var(--text-color);
    transition: var(--transition);
    display: block;
    padding: 8px 12px;
    border-radius: var(--border-radius);
}

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

.blog-posts {
    flex-grow: 1;
}

.blog-post {
    display: flex;
    margin-bottom: 40px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.blog-post .post-image {
    width: 300px;
    height: 250px;
    flex-shrink: 0;
}

.blog-post .post-content {
    padding: 30px;
    flex-grow: 1;
}

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

.post-meta .date,
.post-meta .category {
    font-size: 0.9rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.post-meta .date:before {
    content: '\f073';
    font-family: 'Font Awesome 5 Free';
    margin-right: 5px;
}

.post-meta .category:before {
    content: '\f07b';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 5px;
}

/* Single Blog Post */
.blog-post-single {
    padding: 80px 0;
}

.blog-post-single .post-header {
    text-align: center;
    margin-bottom: 40px;
}

.blog-post-single .post-meta {
    justify-content: center;
}

.blog-post-single h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.blog-post-single .post-author {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-post-single .post-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.blog-post-single .post-author p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.blog-post-single .post-author h3 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.blog-post-single .post-featured-image {
    height: 400px;
    margin-bottom: 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

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

.blog-post-single .post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.blog-post-single .post-content h2 {
    margin-top: 40px;
}

.blog-post-single .post-content h3 {
    margin-top: 30px;
}

.blog-post-single .post-content p.lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.blog-post-single .post-content ul,
.blog-post-single .post-content ol {
    margin-bottom: 30px;
}

.blog-post-single .post-content li {
    margin-bottom: 10px;
}

.blog-post-single .post-content img {
    margin: 30px 0;
    border-radius: var(--border-radius);
}

.blog-post-single .post-content .post-image {
    height: auto;
    margin: 30px 0;
    text-align: center;
}

.blog-post-single .post-content .post-image img {
    margin: 0 0 10px;
}

.blog-post-single .post-content .post-image .caption {
    font-size: 0.9rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 0;
}

.blog-post-single .post-content .post-quote {
    background-color: var(--bg-light);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    margin: 30px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.blog-post-single .post-content .post-quote blockquote {
    margin: 0;
}

.blog-post-single .post-content .post-quote p {
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 0;
}

.blog-post-single .post-tags {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.blog-post-single .post-tags span {
    margin-right: 10px;
    font-weight: 600;
}

.blog-post-single .post-tags a {
    display: inline-block;
    background-color: var(--bg-light);
    padding: 5px 12px;
    border-radius: 20px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    transition: var(--transition);
}

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

.blog-post-single .post-share {
    margin: 40px 0;
    display: flex;
    align-items: center;
}

.blog-post-single .post-share span {
    margin-right: 15px;
    font-weight: 600;
}

.blog-post-single .post-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--bg-light);
    border-radius: 50%;
    margin-right: 10px;
    color: var(--text-color);
    transition: var(--transition);
}

.blog-post-single .post-share a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.blog-post-single .post-navigation {
    margin: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 20px 0;
}

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

.blog-post-single .nav-prev,
.blog-post-single .nav-next,
.blog-post-single .empty-prev,
.blog-post-single .empty-next {
    width: 48%;
}

.blog-post-single .nav-next {
    text-align: right;
}

.blog-post-single .nav-links span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
}

.blog-post-single .nav-links h4 {
    margin-bottom: 0;
    transition: var(--transition);
}

.blog-post-single .nav-links a:hover h4 {
    color: var(--primary-color);
}

.blog-post-single .related-posts h3 {
    margin-bottom: 30px;
    text-align: center;
}

/* About Section */
.about-story,
.about-mission {
    margin-bottom: 80px;
}

.about-content,
.mission-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-image,
.mission-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.about-text,
.mission-text {
    flex: 1;
}

.values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-item {
    text-align: center;
}

.value-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Team Section */
.team {
    background-color: var(--bg-light);
    text-align: center;
}

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

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

.team-member {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
}

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

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

.team-member .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

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

.social-links {
    display: flex;
    justify-content: center;
    gap: 15px;
}

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

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

/* Clients Section */
.clients {
    text-align: center;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.client-logo {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo img {
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.client-logo:hover img {
    filter: none;
    opacity: 1;
}

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

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

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

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

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

/* Services Section */
.services-intro {
    margin-bottom: 80px;
}

.services-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.services-text {
    flex: 1;
}

.services-image {
    flex: 1;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-box {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-box h3 {
    margin-bottom: 15px;
}

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

.service-box ul {
    margin-bottom: 0;
}

.service-box li {
    margin-bottom: 8px;
}

/* Pricing Section */
.pricing {
    background-color: var(--bg-light);
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.price-box {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.price-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.price-box.featured {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
}

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

.price-header {
    background-color: var(--primary-color);
    color: white;
    padding: 20px;
}

.price-header h3 {
    margin-bottom: 10px;
}

.price-header .price {
    font-size: 1.5rem;
    font-weight: 700;
}

.price-features {
    padding: 30px;
}

.price-features ul {
    list-style: none;
    margin: 0 0 30px;
    text-align: left;
}

.price-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.price-features li i {
    color: var(--success-color);
    margin-right: 10px;
}

.price-action {
    padding: 0 30px 30px;
}

.custom-pricing {
    max-width: 700px;
    margin: 50px auto 0;
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

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

.custom-pricing p {
    margin-bottom: 20px;
}

/* Process Section */
.process-steps {
    margin-top: 50px;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 30px;
    position: relative;
    z-index: 2;
}

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 60px;
    left: 30px;
    width: 2px;
    height: calc(100% - 60px);
    background-color: var(--border-color);
    z-index: 1;
}

.step-content {
    flex-grow: 1;
}

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

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

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

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

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 20px;
    margin-top: 5px;
}

.info-item h3 {
    margin-bottom: 10px;
}

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

.contact-form-wrapper {
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.form-group {
    width: calc(50% - 10px);
}

.form-group.full-width {
    width: 100%;
}

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

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

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

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

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

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

.map-container {
    margin-top: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-light);
}

.faq-grid {
    margin-top: 50px;
}

.faq-item {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

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

.faq-question h3 {
    margin-bottom: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    color: var(--primary-color);
    transition: var(--transition);
}

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

.faq-answer p {
    margin-bottom: 0;
}

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

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

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

.popup.show {
    display: flex;
}

.popup-content {
    background-color: var(--bg-color);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    max-width: 500px;
}

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

.close-popup:hover {
    color: var(--accent-color);
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.popup-content h2 {
    margin-bottom: 15px;
}

.popup-content p {
    margin-bottom: 30px;
}

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

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

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

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

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

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

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

.cookie-accept:hover {
    background-color: var(--secondary-dark);
}

.cookie-settings {
    background-color: var(--bg-light);
    color: var(--text-color);
}

.cookie-settings:hover {
    background-color: var(--border-color);
    color: var(--text-color);
}

.cookie-decline {
    background-color: var(--text-light);
}

.cookie-decline:hover {
    background-color: var(--text-color);
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .about-content,
    .mission-content,
    .services-content {
        flex-direction: column;
    }
    
    .about-image,
    .mission-image,
    .services-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        margin-bottom: 40px;
    }
    
    .blog-content {
        flex-direction: column;
    }
    
    .blog-filter {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .blog-filter ul {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .blog-post .post-image {
        width: 100%;
        height: 200px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        height: auto;
        padding: 20px;
    }
    
    .logo {
        margin-bottom: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0 15px 10px;
    }
    
    .hero,
    .page-header {
        padding: 60px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .feature-grid,
    .posts-grid,
    .team-grid,
    .service-grid,
    .pricing-grid {
        gap: 20px;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }
    
    .newsletter-form button {
        border-radius: var(--border-radius);
    }
    
    .footer-content {
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
    
    .social-icons {
        margin-top: 10px;
    }
    
    .form-group {
        width: 100%;
    }
    
    .blog-post-single .post-featured-image {
        height: 250px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
}
