/* Base Styles */
:root {
    --primary-color: #00a8cc;
    --secondary-color: #142850;
    --tertiary-color: #27496d;
    --accent-color: #0c7b93;
    --light-color: #f1f6f9;
    --dark-color: #142850;
    --gray-color: #6c757d;
    --light-gray-color: #e9ecef;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --font-main: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Montserrat', 'Segoe UI', Roboto, sans-serif;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 12px;
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

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

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

ul {
    list-style: none;
    margin-bottom: 1rem;
}

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

section {
    padding: 5rem 0;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.center {
    text-align: center;
    margin: 2rem 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-md);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    font-size: 1rem;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

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

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

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

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

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

.btn-tertiary:hover {
    background-color: #495057;
    color: white;
}

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

.btn-light:hover {
    background-color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

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

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

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

.nav-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0;
}

.nav-links li a {
    color: var(--dark-color);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger span {
    height: 3px;
    width: 100%;
    background-color: var(--secondary-color);
    border-radius: 10px;
}

/* Welcome Multilingual Bar */
.welcome-multilingual {
    background-color: var(--secondary-color);
    color: white;
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    background-color: var(--secondary-color);
    color: white;
    position: relative;
    padding: 8rem 0;
    background-image: linear-gradient(rgba(20, 40, 80, 0.8), rgba(20, 40, 80, 0.8)), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Parallax Sections */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}

.parallax-section .container {
    position: relative;
    z-index: 2;
}

#hero {
    background-image: linear-gradient(rgba(20, 40, 80, 0.7), rgba(20, 40, 80, 0.7)), url('images/1.jpg');
}

#cta {
    background-image: linear-gradient(rgba(20, 40, 80, 0.7), rgba(20, 40, 80, 0.7)), url('images/3.jpg');
}

#newsletter {
    background-image: linear-gradient(rgba(20, 40, 80, 0.7), rgba(20, 40, 80, 0.7)), url('images/7.jpg');
}

#blog-header {
    background-image: linear-gradient(rgba(20, 40, 80, 0.7), rgba(20, 40, 80, 0.7)), url('images/8.jpg');
}

#blog-cta {
    background-image: linear-gradient(rgba(20, 40, 80, 0.7), rgba(20, 40, 80, 0.7)), url('images/2.jpg');
}

#services-header {
    background-image: linear-gradient(rgba(20, 40, 80, 0.7), rgba(20, 40, 80, 0.7)), url('images/24.jpg');
}

#services-testimonials {
    background-image: linear-gradient(rgba(20, 40, 80, 0.7), rgba(20, 40, 80, 0.7)), url('images/25.jpg');
}

#services-cta {
    background-image: linear-gradient(rgba(20, 40, 80, 0.7), rgba(20, 40, 80, 0.7)), url('images/26.jpg');
}

#about-header {
    background-image: linear-gradient(rgba(20, 40, 80, 0.7), rgba(20, 40, 80, 0.7)), url('images/28.jpg');
}

#about-stats {
    background-image: linear-gradient(rgba(20, 40, 80, 0.7), rgba(20, 40, 80, 0.7)), url('images/29.jpg');
}

#about-cta {
    background-image: linear-gradient(rgba(20, 40, 80, 0.7), rgba(20, 40, 80, 0.7)), url('images/30.jpg');
}

#contact-header {
    background-image: linear-gradient(rgba(20, 40, 80, 0.7), rgba(20, 40, 80, 0.7)), url('images/39.jpg');
}

/* Features Section */
.features {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

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

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

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

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

/* Latest Posts Section */
.latest-posts {
    padding: 5rem 0;
}

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

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

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

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

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

.post-content {
    padding: 1.5rem;
}

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

.read-more {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.read-more:hover {
    color: var(--accent-color);
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 400px;
}

.testimonial-content {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 30px;
    width: 20px;
    height: 20px;
    background-color: white;
    transform: rotate(45deg);
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.05);
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 1.5rem;
    padding-left: 1rem;
}

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

.testimonial-author h4 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

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

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer Styles */
footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 4rem 0 0;
}

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

.footer-col h3 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

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

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.reg-info {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

address p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

address i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.cookie-content p {
    margin-bottom: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
}

.cookie-more-info {
    margin-left: 1rem;
    font-size: 0.9rem;
}

/* Blog Page Styles */
.page-header {
    padding: 6rem 0;
    text-align: center;
    color: white;
}

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

.page-header p {
    font-size: 1.2rem;
}

.blog-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    gap: 1rem;
}

.search-box {
    display: flex;
    max-width: 300px;
}

.search-box input {
    border: 1px solid var(--light-gray-color);
    border-right: none;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
    width: 100%;
}

.search-box button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    cursor: pointer;
}

.category-filters {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.category-filters span {
    font-weight: 600;
}

.category-filters a {
    color: var(--gray-color);
    padding: 0.25rem 0.5rem;
    border-radius: var(--border-radius-sm);
}

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

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

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

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

.blog-image {
    position: relative;
}

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

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
}

.blog-details {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-color);
}

.blog-meta span {
    display: flex;
    align-items: center;
}

.blog-meta i {
    margin-right: 0.25rem;
}

.blog-details h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.pagination a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    box-shadow: var(--shadow-sm);
    color: var(--dark-color);
    font-weight: 600;
}

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

.newsletter {
    padding: 5rem 0;
    text-align: center;
    color: white;
}

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

.newsletter-content p {
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--light-gray-color);
    border-radius: var(--border-radius-md);
    font-family: var(--font-main);
    font-size: 1rem;
}

.newsletter-form .form-group {
    display: flex;
}

.newsletter-form input {
    border-radius: var(--border-radius-md) 0 0 var(--border-radius-md);
    border-right: none;
}

.newsletter-form button {
    border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
}

.form-check input {
    margin-top: 0.25rem;
}

.form-check label {
    font-size: 0.9rem;
}

/* Blog Post Page Styles */
.blog-post-header {
    padding: 10rem 0 6rem;
    position: relative;
    color: white;
}

.blog-post-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.blog-post-meta {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.category {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: var(--border-radius-sm);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.blog-post-meta h1 {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.post-details {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.post-details span {
    display: flex;
    align-items: center;
}

.post-details i {
    margin-right: 0.5rem;
}

.blog-post-content {
    padding: 4rem 0;
}

.post-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.post-body {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.post-intro {
    font-size: 1.2rem;
    color: var(--tertiary-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.post-body h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.post-body h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.post-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.post-body ul,
.post-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.post-body ul li,
.post-body ol li {
    margin-bottom: 0.5rem;
}

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

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

.post-quote {
    margin: 2.5rem 0;
    padding: 2rem;
    background-color: var(--light-color);
    border-left: 4px solid var(--primary-color);
    border-radius: var(--border-radius-md);
}

.post-quote blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.post-quote cite {
    display: block;
    text-align: right;
    font-style: normal;
    font-weight: 600;
    color: var(--gray-color);
}

.post-tags {
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.post-tags span {
    font-weight: 600;
    color: var(--gray-color);
}

.post-tags a {
    background-color: var(--light-color);
    color: var(--tertiary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

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

.author-box {
    margin-top: 3rem;
    display: flex;
    background-color: var(--light-color);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
}

.author-box img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 1.5rem;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.5rem;
}

.author-info p {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.author-social {
    display: flex;
    gap: 0.75rem;
}

.author-social a {
    color: var(--gray-color);
    font-size: 1.1rem;
}

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

.share-post {
    margin-top: 3rem;
}

.share-post h4 {
    margin-bottom: 1rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-buttons a {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius-sm);
    color: white;
    font-size: 0.9rem;
}

.share-buttons i {
    margin-right: 0.5rem;
}

.share-facebook {
    background-color: #3b5998;
}

.share-twitter {
    background-color: #1da1f2;
}

.share-linkedin {
    background-color: #0077b5;
}

.share-whatsapp {
    background-color: #25d366;
}

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

.related-posts h3 {
    margin-bottom: 1.5rem;
}

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

.related-post {
    background-color: white;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

.related-post h4 {
    padding: 1rem;
    font-size: 1rem;
    margin-bottom: 0;
}

.post-comments {
    margin-top: 3rem;
}

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

.comments-list {
    margin-bottom: 3rem;
}

.comment {
    display: flex;
    margin-bottom: 2rem;
}

.comment-avatar {
    margin-right: 1.5rem;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-body {
    flex: 1;
}

.comment-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.comment-meta h5 {
    margin-bottom: 0;
    font-size: 1.1rem;
}

.comment-meta span {
    color: var(--gray-color);
    font-size: 0.9rem;
}

.comment-body p {
    margin-bottom: 0.75rem;
}

.comment-actions a {
    color: var(--gray-color);
    font-size: 0.9rem;
    font-weight: 600;
}

.comment.reply {
    margin-left: 4rem;
    margin-top: 1.5rem;
}

.comment-form h4 {
    margin-bottom: 1.5rem;
}

.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
}

.sidebar-widget h4 {
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--light-gray-color);
}

.sidebar-widget.search-widget form {
    display: flex;
}

.sidebar-widget .search-box {
    width: 100%;
    max-width: none;
}

.categories-widget ul {
    margin-bottom: 0;
}

.categories-widget li {
    margin-bottom: 0.75rem;
}

.categories-widget a {
    display: flex;
    justify-content: space-between;
    color: var(--dark-color);
}

.categories-widget a:hover {
    color: var(--primary-color);
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.popular-post {
    display: flex;
    align-items: center;
}

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

.popular-post-content h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.popular-post-content span {
    font-size: 0.8rem;
    color: var(--gray-color);
}

.cta-widget {
    text-align: center;
    background-color: var(--secondary-color);
    color: white;
}

.cta-widget h4 {
    color: white;
    border-bottom: none;
}

.cta-widget p {
    margin-bottom: 1.5rem;
}

.tags-widget .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tags-widget a {
    background-color: var(--light-color);
    color: var(--tertiary-color);
    padding: 0.25rem 0.75rem;
    border-radius: var(--border-radius-sm);
    font-size: 0.9rem;
}

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

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

.services-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

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

.services-intro-content h2 {
    margin-bottom: 1.5rem;
}

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

.service-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary-color);
}

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

.service-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card h4 {
    margin: 1.5rem 0 0.75rem;
    font-size: 1.1rem;
}

.service-card ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.service-card li {
    margin-bottom: 0.5rem;
}

.service-price {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: var(--light-color);
    border-radius: var(--border-radius-sm);
    text-align: center;
}

.service-price p {
    margin-bottom: 0;
    font-size: 1.1rem;
}

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

.service-packages {
    background-color: var(--light-color);
    padding: 5rem 0;
}

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

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

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

.package-card.popular {
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    z-index: 2;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-bottom-left-radius: var(--border-radius-sm);
}

.package-header {
    text-align: center;
    padding: 2rem;
    background-color: var(--secondary-color);
    color: white;
}

.package-header h3 {
    color: white;
    margin-bottom: 1rem;
}

.package-price {
    margin-top: 1rem;
}

.package-price .price {
    font-size: 2.5rem;
    font-weight: 700;
}

.package-price .duration {
    font-size: 1.1rem;
    opacity: 0.8;
}

.package-features {
    padding: 2rem;
}

.package-features ul {
    margin-bottom: 2rem;
}

.package-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.package-features i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
}

.package-features .fa-check {
    color: var(--success-color);
}

.package-features .fa-times {
    color: var(--danger-color);
}

.package-card .btn {
    display: block;
    margin: 0 2rem 2rem;
}

.process-section {
    padding: 5rem 0;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 25px;
    width: 2px;
    background-color: var(--light-gray-color);
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

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

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 0.75rem;
}

.services-testimonials {
    padding: 5rem 0;
    color: white;
}

.services-testimonials h2 {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
}

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

.faq-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

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

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

.faq-toggle {
    font-size: 1.2rem;
    color: var(--gray-color);
    transition: var(--transition-fast);
}

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

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-normal);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 500px;
}

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

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

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

.mission-vision {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mission-box,
.vision-box,
.values-box {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

.mission-box:hover,
.vision-box:hover,
.values-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mission-box .icon,
.vision-box .icon,
.values-box .icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.values-box ul {
    text-align: left;
    padding-left: 1.5rem;
    list-style-type: none;
}

.values-box li {
    margin-bottom: 0.75rem;
}

.values-box strong {
    color: var(--primary-color);
}

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

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

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

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

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

.member-details {
    padding: 1.5rem;
}

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

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.member-social {
    display: flex;
    gap: 1rem;
}

.member-social a {
    color: var(--gray-color);
    font-size: 1.2rem;
}

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

.about-stats {
    padding: 5rem 0;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-title {
    font-size: 1.2rem;
}

.about-approach {
    padding: 5rem 0;
}

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

.approach-item {
    text-align: center;
    padding: 2rem;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.approach-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.approach-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.certifications {
    padding: 5rem 0;
    background-color: var(--light-color);
}

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

.certification-item {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.certification-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    margin-bottom: 1.5rem;
}

.certification-logo img {
    max-height: 80px;
}

.about-partners {
    padding: 5rem 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    align-items: center;
}

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

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

.partner-item img {
    max-width: 120px;
    max-height: 60px;
}

/* Contact Page Styles */
.contact-info {
    padding: 5rem 0;
}

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

.contact-card {
    background-color: white;
    border-radius: var(--border-radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

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

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    margin-bottom: 1rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--light-color);
    border-radius: 50%;
    color: var(--tertiary-color);
    transition: var(--transition-normal);
}

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

.contact-form-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 3rem;
    align-items: center;
}

.contact-form-content h2 {
    margin-bottom: 1.5rem;
}

.contact-form {
    margin-top: 2rem;
}

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

.map-section {
    padding: 5rem 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.map-container {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

.modal-content {
    background-color: white;
    margin: 15% auto;
    padding: 2rem;
    border-radius: var(--border-radius-md);
    max-width: 500px;
    position: relative;
}

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

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

.thank-you-message i {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}

.thank-you-message h3 {
    margin-bottom: 1rem;
}

.thank-you-message p {
    margin-bottom: 2rem;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .about-intro .container,
    .services-intro .container,
    .contact-form-wrapper {
        grid-template-columns: 1fr;
    }
    
    .services-intro-image,
    .about-intro-image,
    .contact-image {
        display: none;
    }
    
    .post-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem;
    }
    
    .nav-links {
        position: fixed;
        flex-direction: column;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: white;
        box-shadow: var(--shadow-md);
        padding: 2rem;
        transition: var(--transition-normal);
        z-index: 900;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .features-grid,
    .posts-grid,
    .testimonials-slider,
    .blog-grid,
    .related-posts-grid,
    .services-grid,
    .packages-grid,
    .testimonials-grid,
    .team-grid,
    .stats-grid,
    .approach-grid,
    .certifications-grid,
    .partners-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-filters {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-filters {
        margin-top: 1rem;
    }
    
    .blog-post-meta h1 {
        font-size: 2.2rem;
    }
    
    .post-details {
        flex-wrap: wrap;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-box img {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .comment {
        flex-direction: column;
    }
    
    .comment-avatar {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .comment.reply {
        margin-left: 1.5rem;
    }
}

@media (max-width: 480px) {
    section {
        padding: 3rem 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .blog-post-meta h1 {
        font-size: 1.8rem;
    }
    
    .post-body {
        padding: 1.5rem;
    }
}
