/* ========================================
   DOLICO TECH - Professional Stylesheet
   ======================================== */

/* ======== CSS Variables ======== */
:root {
    /* Colors */
    --primary-color: #0066cc;
    --secondary-color: #00a86b;
    --accent-color: #ff8c00;
    --danger-color: #dc143c;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --white-color: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --border-color: #e0e0e0;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0066cc 0%, #0099ff 100%);
    --gradient-secondary: linear-gradient(135deg, #00a86b 0%, #00d084 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a2e 0%, #2c3e50 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 102, 204, 0.9) 0%, rgba(0, 168, 107, 0.9) 100%);
    
    /* Fonts */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Roboto', sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 15px;
    
    /* Spacing System */
    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 64px;
    
    /* Section Spacing */
    --section-sm: 40px 0;
    --section-md: 60px 0;
    --section-lg: 80px 0;
    --section-xl: 100px 0;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* ======== Container ======== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* ======== Section Headers ======== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
}

/* ======== Animations & Keyframes ======== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Scroll Reveal Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    transform: translateY(30px);
}

.fade-in-up.animated {
    transform: translateY(0);
}

.fade-in-left {
    transform: translateX(-30px);
}

.fade-in-left.animated {
    transform: translateX(0);
}

.fade-in-right {
    transform: translateX(30px);
}

.fade-in-right.animated {
    transform: translateX(0);
}

.scale-in {
    transform: scale(0.9);
}

.scale-in.animated {
    transform: scale(1);
}

/* Stagger animations for children */
.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-children.animated > * {
    opacity: 1;
    transform: translateY(0);
}

.stagger-children.animated > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children.animated > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children.animated > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children.animated > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-children.animated > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-children.animated > *:nth-child(6) { transition-delay: 0.6s; }
.stagger-children.animated > *:nth-child(7) { transition-delay: 0.7s; }
.stagger-children.animated > *:nth-child(8) { transition-delay: 0.8s; }

/* ======== Buttons ======== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    position: relative;
}

.btn:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
}

.btn:active {
    transform: translateY(0) !important;
    box-shadow: var(--shadow-sm) !important;
}

.btn:disabled,
.btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white-color);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #0052a3 0%, #0077cc 100%);
}

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

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

.btn-secondary:focus-visible {
    outline-color: var(--white-color);
}

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

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

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ======== Header & Navigation ======== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white-color);
    box-shadow: var(--shadow-md);
}

.top-bar {
    background: var(--gradient-dark);
    color: var(--white-color);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-info a,
.contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white-color);
}

.contact-info a:hover {
    color: var(--accent-color);
}

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

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

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

/* Navbar */
.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo h1 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--dark-color);
}

.logo h1 span {
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-primary);
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    border-radius: 2px;
    transition: var(--transition-base);
}

/* ======== Hero Slider Section ======== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 90px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: kenburns 20s ease infinite;
}

@keyframes kenburns {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85) 0%, rgba(0, 168, 107, 0.75) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding-top: 15vh;
    color: var(--white-color);
}

.slide-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: slideInDown 1s ease;
}

.slide-title .highlight {
    color: var(--accent-color);
}

.slide-subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    opacity: 0.95;
    animation: slideInUp 1s ease 0.2s backwards;
}

.slide-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.9;
    animation: fadeIn 1s ease 0.4s backwards;
}

.slide-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 0.6s backwards;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    color: var(--white-color);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-base);
    backdrop-filter: blur(5px);
}

.slider-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
}

.slider-nav.prev {
    left: 30px;
}

.slider-nav.next {
    right: 30px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 15px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition-base);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.dot.active {
    background: var(--white-color);
    width: 30px;
    border-radius: 6px;
}

/* Slide Animations */
@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease;
}

.animate-fade-in-delay {
    animation: fadeIn 1s ease 0.3s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #4a9056 0%, #5cb85c 100%);
    padding: var(--section-sm);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: var(--transition-base);
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    background: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.stat-icon i {
    font-size: 2.5rem;
    color: #4a9056;
}

.stat-content {
    color: var(--white-color);
    text-align: left;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--white-color);
    display: inline-block;
    line-height: 1;
}

.stat-symbol {
    font-size: 2rem;
    color: var(--white-color);
    margin-left: 5px;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--white-color);
    margin-top: 5px;
    font-weight: 400;
}

/* Specific icon colors */
.stat-item:nth-child(1) .stat-icon {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
}

.stat-item:nth-child(1) .stat-icon i {
    color: #28a745;
}

.stat-item:nth-child(2) .stat-icon {
    background: linear-gradient(135deg, #fff3cd 0%, #ffeaa7 100%);
}

.stat-item:nth-child(2) .stat-icon i {
    color: #ffc107;
}

.stat-item:nth-child(3) .stat-icon {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
}

.stat-item:nth-child(3) .stat-icon i {
    color: #dc3545;
}

/* ======== Solutions Section ======== */
.solutions-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.solution-feature {
    max-width: 100%;
    margin: 0;
    background: var(--white-color);
    padding: 50px 80px;
    border-radius: 0;
    box-shadow: none;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white-color);
    font-size: 2.5rem;
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--dark-color);
}

.feature-description {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.feature-column h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-column ul {
    list-style: none;
}

.feature-column li {
    padding: 10px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.feature-column li i {
    color: var(--secondary-color);
    margin-top: 3px;
    font-size: 1.1rem;
}

/* Feature Images Layout */
.feature-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.feature-text-side {
    display: flex;
    flex-direction: column;
}

.feature-image-side {
    position: relative;
}

.feature-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
}

.feature-image-large {
    grid-column: 1 / -1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-base);
}

.feature-image-large:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-image-large img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.feature-image-large:hover img {
    transform: scale(1.05);
}

.feature-image-small {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.feature-image-small:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-image-small img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: var(--transition-slow);
}

.feature-image-small:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    padding: 20px;
    transform: translateY(100%);
    transition: var(--transition-base);
}

.feature-image-large:hover .image-overlay,
.feature-image-small:hover .image-overlay {
    transform: translateY(0);
}

.image-caption {
    color: var(--white-color);
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
}

/* ======== Services Section ======== */
.services-section {
    padding: var(--section-padding);
    background: var(--white-color);
}

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

.service-card {
    background: var(--white-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-slow);
    z-index: 1;
    pointer-events: none;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.2), 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
    left: 100%;
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay i {
    font-size: 4rem;
    color: var(--white-color);
}

.service-content {
    padding: 30px;
}

.service-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.service-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
}

.service-features i {
    color: var(--secondary-color);
    font-size: 1.1rem;
}

/* ======== Services Preview Section ======== */
.services-preview-section {
    padding: var(--section-padding);
    background: var(--white-color);
}

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

.service-preview-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border-top: 4px solid transparent;
}

.service-preview-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-color);
}

.service-preview-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white-color);
    font-size: 2.5rem;
    transition: var(--transition-base);
}

.service-preview-card:hover .service-preview-icon {
    transform: rotateY(360deg);
    background: var(--gradient-secondary);
}

.service-preview-card h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.service-preview-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 1rem;
}

.service-preview-card .btn {
    margin-top: 10px;
}

/* ======== Testimonial Section ======== */
.testimonial-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    color: var(--white-color);
}

.testimonial-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-icon {
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    opacity: 0.7;
}

.testimonial-text {
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author h4 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.testimonial-author p {
    font-size: 1rem;
    opacity: 0.8;
}

/* ======== Testimonials Carousel Section ======== */
.testimonials-carousel-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    color: var(--text-dark);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 60px;
}

.testimonials-container {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
    animation: fadeIn 0.8s ease-in-out;
}

.testimonial-card {
    text-align: center;
    padding: 40px;
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-card i {
    font-size: 3.5rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    opacity: 0.8;
}

.testimonial-card .testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 30px;
    font-style: italic;
    color: var(--text-dark);
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.testimonial-card .author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--accent-color);
    flex-shrink: 0;
}

.testimonial-card .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-card .author-info {
    text-align: left;
}

.testimonial-card .author-info h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--accent-color);
}

.testimonial-card .author-info p {
    font-size: 0.95rem;
    opacity: 0.7;
    color: var(--text-light);
}

/* Testimonial Navigation */
.testimonial-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 102, 204, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: var(--transition-base);
    z-index: 10;
}

.testimonial-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.testimonial-prev {
    left: 0;
}

.testimonial-next {
    right: 0;
}

/* Testimonial Dots */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(0, 102, 204, 0.3);
    cursor: pointer;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.testimonial-dot:hover {
    background: rgba(0, 102, 204, 0.6);
    transform: scale(1.2);
}

.testimonial-dot.active {
    background: var(--primary-color);
    border-color: var(--accent-color);
    transform: scale(1.3);
}

/* ======== Engagement Section ======== */
.engagement-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.engagement-description {
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.9;
    max-width: 900px;
    margin: 0 auto 50px;
    color: var(--text-dark);
}

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

.engagement-item {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

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

.engagement-item h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.engagement-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.about-content h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* ======== Engagement Section ======== */
.engagement-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.engagement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.engagement-text {
    padding-right: 20px;
}

.engagement-subtitle {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.engagement-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.3;
}

.engagement-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

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

.engagement-feature-card {
    background: var(--secondary-color);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition-base);
    box-shadow: 0 4px 6px rgba(0, 168, 107, 0.1);
}

.engagement-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 168, 107, 0.2);
}

.engagement-feature-card .feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.8rem;
}

.engagement-feature-card h4 {
    font-family: var(--font-primary);
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
}

.engagement-image {
    position: relative;
    height: 100%;
    min-height: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.engagement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

/* ======== CTA Section ======== */
.cta-section {
    padding: var(--section-padding);
    background: var(--gradient-primary);
    color: var(--white-color);
    text-align: center;
}

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

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

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

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

/* ======== References Section ======== */
.references-section {
    padding: var(--section-padding);
    background: var(--white-color);
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    align-items: center;
}

.reference-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.reference-item:hover {
    background: var(--white-color);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.reference-item img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-base);
}

.reference-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Reference Cards with Overlay */
.reference-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    background: var(--light-color);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
    overflow: hidden;
    min-height: 150px;
}

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

.reference-logo {
    position: relative;
    z-index: 2;
    transition: var(--transition-base);
}

.reference-logo img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-base);
}

.reference-card:hover .reference-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.reference-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    z-index: 1;
    padding: 20px;
}

.reference-card:hover .reference-overlay {
    opacity: 1;
}

.reference-overlay h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.reference-overlay p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

/* References Slider */
.references-slider {
    position: relative;
    max-width: 100%;
    margin: 40px auto 0;
    padding: 0 60px;
}

.references-slider-container {
    overflow: hidden;
    width: 100%;
}

.references-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}

.references-track .reference-card {
    flex: 0 0 calc(25% - 22.5px);
    min-width: calc(25% - 22.5px);
}

.reference-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 102, 204, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: var(--transition-base);
    z-index: 10;
}

.reference-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.reference-prev {
    left: 0;
}

.reference-next {
    right: 0;
}

@media (max-width: 1024px) {
    .references-track .reference-card {
        flex: 0 0 calc(33.333% - 20px);
        min-width: calc(33.333% - 20px);
    }
}

@media (max-width: 768px) {
    .references-slider {
        padding: 0 50px;
    }
    
    .references-track .reference-card {
        flex: 0 0 calc(50% - 15px);
        min-width: calc(50% - 15px);
    }
    
    .reference-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .references-slider {
        padding: 0 40px;
    }
    
    .references-track .reference-card {
        flex: 0 0 100%;
        min-width: 100%;
    }
}

/* ======== Contact Section ======== */
.contact-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

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

.contact-info-box h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--dark-color);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-item h4 {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.contact-item p,
.contact-item a {
    color: var(--text-light);
    line-height: 1.6;
}

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

/* Contact Form */
.contact-form-box {
    background: var(--white-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-base);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ======== Footer ======== */
.footer {
    background: var(--gradient-dark);
    color: var(--white-color);
}

.footer-main {
    padding: 60px 0 30px;
}

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

.footer-title {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--white-color);
}

.footer-description {
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-social {
    display: flex;
    gap: 10px;
}

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

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

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    display: inline-block;
    transition: var(--transition-base);
}

.footer-menu a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

/* Footer Contact Info */
.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 15px 0 0 0;
}

.footer-contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact-info li i {
    color: var(--primary-color);
    font-size: 16px;
    min-width: 20px;
    margin-top: 2px;
}

.footer-contact-info li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-base);
}

.footer-contact-info li a:hover {
    color: var(--accent-color);
}

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

.footer-bottom p {
    opacity: 0.8;
}

.footer-bottom a {
    color: var(--accent-color);
    font-weight: 500;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-content p {
    margin: 0;
}

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

.footer-bottom-social a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-bottom-social a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
    text-decoration: none;
}

/* ======== Scroll to Top Button ======== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: var(--white-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* ======== Page Header ======== */
.page-header {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.9), rgba(0, 168, 107, 0.85)), 
                url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1920&q=80') center/cover no-repeat fixed;
    color: var(--white-color);
    padding: 160px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.page-header p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out 0.2s both;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1.2s ease-out 0.4s both;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    opacity: 0.6;
}

.breadcrumb a {
    color: var(--white-color);
    text-decoration: none;
    opacity: 0.9;
    transition: var(--transition-fast);
    padding: 4px 8px;
    border-radius: 4px;
}

.breadcrumb a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.breadcrumb .active {
    opacity: 0.7;
    font-weight: 500;
}

.breadcrumb span {
    opacity: 0.7;
}

/* ======== Contact Page Styles ======== */
.contact-section {
    padding: var(--section-padding);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    margin-top: 40px;
}

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

.contact-info-box h3,
.contact-form-box h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 102, 204, 0.1);
    border-radius: 50%;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.contact-item a:hover {
    text-decoration: underline;
}

.contact-social {
    margin-top: 40px;
}

.contact-social h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.social-links-large a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white-color);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: var(--transition-base);
}

.social-links-large a:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Contact Form */
.form-intro {
    color: var(--text-light);
    margin-bottom: 30px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

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

.btn-block {
    width: 100%;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Map Section */
.map-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

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

.map-placeholder {
    background: var(--white-color);
    padding: 100px 20px;
    text-align: center;
    color: var(--text-light);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    font-size: 1.1rem;
    margin: 10px 0;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
}

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

.faq-item {
    background: var(--white-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition-base);
}

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

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ======== Services Page Styles ======== */
.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-choose {
    background: var(--light-color);
    padding: var(--section-padding);
    margin-top: 60px;
}

.why-choose-section {
    background: var(--light-color);
    padding: var(--section-padding);
}

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

.why-choose-item {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid transparent;
    position: relative;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 102, 204, 0.15), 0 8px 20px rgba(0, 0, 0, 0.1);
}

.why-choose-item:hover::before {
    opacity: 1;
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white-color);
    font-size: 2rem;
    transition: var(--transition-base);
}

.why-choose-item:hover .why-icon {
    transform: scale(1.1) rotateY(360deg);
    background: var(--gradient-primary);
}

.why-choose-item h3 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
}

.why-choose-item p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

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

.benefit-card {
    background: var(--white-color);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.benefit-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ======== References Page Styles ======== */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.client-logo {
    background: var(--white-color);
    padding: 30px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    min-height: 150px;
}

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

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

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

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

.sector-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background: var(--gradient-primary);
    color: var(--white-color);
}

.sector-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.sector-card:hover i {
    color: var(--white-color);
}

.sector-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: var(--transition-base);
}

.sector-card:hover h4 {
    color: var(--white-color);
}

.sector-card p {
    color: var(--text-light);
    line-height: 1.6;
    transition: var(--transition-base);
}

.sector-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* ======== About Page Styles ======== */
.mission-vision-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.mission-box,
.vision-box {
    background: var(--white-color);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.mission-box h3,
.vision-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 15px;
}

.mv-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mv-icon i,
.mission-box i,
.vision-box i {
    font-size: 2rem;
    color: var(--white-color);
}

.mission-box p,
.vision-box p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.values-section {
    padding: var(--section-padding);
}

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

.value-item,
.value-card {
    background: var(--white-color);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 4px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.value-item::after,
.value-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.05), rgba(0, 168, 107, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.value-item:hover,
.value-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
}

.value-item:hover::after,
.value-card:hover::after {
    opacity: 1;
}

.value-item > *,
.value-card > * {
    position: relative;
    z-index: 1;
}

.value-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white-color);
    font-size: 2.5rem;
    transition: var(--transition-base);
}

.value-item:hover .value-icon {
    transform: rotateY(360deg);
}

.value-item h3,
.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.value-item p,
.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.engagement-section {
    background: var(--light-color);
    padding: var(--section-padding);
}

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

.engagement-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.engagement-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--gradient-primary);
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.engagement-card:hover {
    color: var(--white-color);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.25);
}

.engagement-card:hover::before {
    width: 500px;
    height: 500px;
}

.engagement-card > * {
    position: relative;
    z-index: 1;
}

.engagement-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.engagement-card:hover i {
    color: var(--white-color);
}

.engagement-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    transition: var(--transition-base);
}

.engagement-card:hover h4 {
    color: var(--white-color);
}

.engagement-card p {
    color: var(--text-light);
    line-height: 1.6;
    transition: var(--transition-base);
}

.engagement-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Expertise Section */
.expertise-section {
    padding: var(--section-padding);
    background: var(--white-color);
}

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

.expertise-card {
    background: var(--white-color);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    position: relative;
    border-top: 4px solid transparent;
}

.expertise-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-color);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--white-color);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.3);
}

.expertise-card h4 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 15px;
    text-align: center;
}

.expertise-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 20px;
}

.expertise-badge {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid var(--border-color);
}

.stat-box {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--font-primary);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ======== 404 ERROR PAGE STYLES ======== */
.error-404-header {
    background: var(--gradient-dark);
    padding: 100px 0 80px;
}

.error-404-content {
    text-align: center;
}

.error-number {
    font-size: 120px;
    font-weight: 800;
    color: var(--white-color);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.error-404-section {
    padding: var(--section-lg);
}

.error-404-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.error-search-box {
    text-align: center;
    margin-bottom: 50px;
    padding: 40px;
    background: var(--white-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.error-search-box h2 {
    margin-bottom: 25px;
    color: var(--text-dark);
}

.error-quick-links {
    margin-bottom: 50px;
}

.error-quick-links h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.quick-link-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
    background: var(--white-color);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
    text-decoration: none;
    color: var(--text-dark);
}

.quick-link-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--gradient-primary);
    color: var(--white-color);
}

.quick-link-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.error-recent-posts h3 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

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

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

.recent-post-thumbnail {
    overflow: hidden;
    height: 180px;
}

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

.recent-post-card:hover .recent-post-thumbnail img {
    transform: scale(1.1);
}

.recent-post-content {
    padding: 20px;
}

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

.recent-post-content h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

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

.recent-post-meta {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ======== SEARCH RESULTS PAGE ======== */
.search-header {
    background: var(--gradient-primary);
}

.search-query {
    color: var(--accent-color);
    font-weight: 600;
}

.search-results-count {
    font-size: 1.1rem;
    opacity: 0.9;
}

.search-results-section {
    padding: var(--section-lg);
    background: var(--light-color);
}

.content-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
}

.search-form-wrapper {
    background: var(--white-color);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 30px;
}

.search-form-large .search-input-group {
    display: flex;
    gap: 10px;
}

.search-form-large .search-field {
    flex: 1;
    padding: 12px 20px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-size: 1rem;
}

.search-form-large .search-submit {
    padding: 12px 30px;
}

.search-results-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.search-result-item {
    display: flex;
    gap: 25px;
    background: var(--white-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.search-result-item:hover {
    box-shadow: var(--shadow-md);
}

.search-result-thumbnail {
    flex-shrink: 0;
    width: 280px;
    height: 200px;
    overflow: hidden;
}

.search-result-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.search-result-item:hover .search-result-thumbnail img {
    transform: scale(1.05);
}

.search-result-content {
    padding: 25px;
    flex: 1;
}

.search-result-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 12px;
}

.search-result-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search-result-title {
    margin-bottom: 15px;
}

.search-result-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

.search-result-title a:hover {
    color: var(--primary-color);
}

.search-result-excerpt {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.no-results {
    text-align: center;
    padding: 60px 30px;
    background: var(--white-color);
    border-radius: var(--radius-lg);
}

.no-results-icon {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.search-suggestions {
    text-align: left;
    max-width: 500px;
    margin: 30px auto 0;
    padding: 25px;
    background: var(--light-color);
    border-radius: var(--radius-md);
}

.search-suggestions h3 {
    margin-bottom: 15px;
}

.search-suggestions ul {
    list-style: none;
    padding: 0;
}

.search-suggestions li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.search-suggestions li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ======== ARCHIVE PAGE ======== */
.archive-header {
    background: var(--gradient-secondary);
}

.archive-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.archive-description {
    max-width: 700px;
    margin: 15px auto 0;
    font-size: 1.1rem;
}

.archive-count {
    margin-top: 10px;
    font-size: 1rem;
    opacity: 0.9;
}

.archive-content-section {
    padding: var(--section-lg);
    background: var(--light-color);
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

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

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

.post-thumbnail {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

.post-card:hover .post-thumbnail img {
    transform: scale(1.1);
}

.post-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.post-category-badge a {
    color: var(--white-color);
    text-decoration: none;
}

.post-content {
    padding: 25px;
}

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

.post-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.post-title {
    margin-bottom: 15px;
}

.post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

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

.post-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition-base);
}

.read-more-btn:hover {
    gap: 12px;
}

.no-posts {
    text-align: center;
    padding: 80px 30px;
    background: var(--white-color);
    border-radius: var(--radius-lg);
}

.no-posts-icon {
    font-size: 4rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.pagination-wrapper {
    margin-top: 50px;
}

.pagination-wrapper .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.pagination-wrapper .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    padding: 0 15px;
    background: var(--white-color);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
    background: var(--primary-color);
    color: var(--white-color);
}

/* ======== SINGLE POST PAGE ======== */
.post-header {
    position: relative;
    padding: 200px 0 80px;
    color: var(--white-color);
}

.post-header-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.post-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.85), rgba(0, 168, 107, 0.75));
    z-index: -1;
}

.post-header-content {
    position: relative;
}

.breadcrumb-light {
    color: var(--white-color);
}

.breadcrumb-light a {
    color: var(--white-color);
    opacity: 0.9;
}

.breadcrumb-light a:hover {
    opacity: 1;
}

.post-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 25px 0;
    font-size: 0.95rem;
}

.post-meta-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.95;
}

.post-meta-info a {
    color: var(--white-color);
    text-decoration: none;
    transition: opacity 0.3s;
}

.post-meta-info a:hover {
    opacity: 0.8;
}

.post-content-section {
    padding: var(--section-lg);
    background: var(--light-color);
}

.single-post-article {
    background: var(--white-color);
    padding: 50px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.post-content-wrapper {
    margin-bottom: 40px;
    line-height: 1.8;
}

.post-content-wrapper h2,
.post-content-wrapper h3,
.post-content-wrapper h4 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.post-content-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    margin: 25px 0;
}

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

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

.page-links {
    margin: 30px 0;
    padding: 20px;
    background: var(--light-color);
    border-radius: var(--radius-md);
    text-align: center;
}

.page-links span {
    display: inline-block;
    margin: 0 5px;
}

.page-links a {
    display: inline-block;
    padding: 8px 16px;
    background: var(--white-color);
    color: var(--text-dark);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition-base);
}

.page-links a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.post-tags {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    padding: 20px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.tag-badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--light-color);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.tag-badge:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.post-share {
    margin-bottom: 40px;
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--radius-md);
}

.post-share h3 {
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    color: var(--white-color);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition-base);
}

.share-facebook {
    background: #1877f2;
}

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

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

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

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

.author-bio {
    display: flex;
    gap: 25px;
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.author-avatar img {
    border-radius: 50%;
}

.author-info {
    flex: 1;
}

.author-name {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.author-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.author-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-base);
}

.author-link:hover {
    gap: 12px;
}

.post-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

.nav-previous,
.nav-next {
    background: var(--light-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.nav-previous a,
.nav-next a {
    display: block;
    padding: 25px;
    text-decoration: none;
    transition: var(--transition-base);
}

.nav-previous a:hover,
.nav-next a:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

.nav-subtitle {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.nav-previous a:hover .nav-subtitle,
.nav-next a:hover .nav-subtitle {
    color: var(--white-color);
}

.nav-title {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
}

.nav-previous a:hover .nav-title,
.nav-next a:hover .nav-title {
    color: var(--white-color);
}

.related-posts {
    margin-bottom: 50px;
}

.related-posts-title {
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.related-post-card {
    background: var(--light-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition-base);
}

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

.related-post-thumbnail {
    height: 180px;
    overflow: hidden;
}

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

.related-post-card:hover .related-post-thumbnail img {
    transform: scale(1.1);
}

.related-post-content {
    padding: 20px;
}

.related-post-meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.related-post-title {
    margin: 0;
}

.related-post-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

.related-post-title a:hover {
    color: var(--primary-color);
}

/* ======== COMMENTS STYLES ======== */
.comments-area {
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid var(--border-color);
}

.comments-title {
    margin-bottom: 30px;
    color: var(--text-dark);
}

.comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.comment-list .children {
    list-style: none;
    padding-left: 50px;
    margin-top: 20px;
}

.comment-body {
    display: flex;
   gap: 20px;
    padding: 25px;
    background: var(--light-color);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.comment-author-avatar img {
    border-radius: 50%;
}

.comment-content-wrapper {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.comment-metadata {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.comment-author-name {
    font-weight: 600;
    font-style: normal;
    color: var(--text-dark);
}

.comment-author-name a {
    color: var(--text-dark);
    text-decoration: none;
}

.comment-date {
    font-size: 0.85rem;
    color: var(--text-light);
}

.comment-date a {
    color: var(--text-light);
    text-decoration: none;
}

.comment-reply a {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.comment-reply a:hover {
    text-decoration: underline;
}

.comment-awaiting-moderation {
    padding: 10px 15px;
    background: #fff3cd;
    border-left: 3px solid var(--accent-color);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.comment-text {
    line-height: 1.7;
    color: var(--text-dark);
}

.no-comments {
    padding: 30px;
    background: var(--light-color);
    border-radius: var(--radius-md);
    text-align: center;
    color: var(--text-light);
}

.comment-respond-wrapper {
    margin-top: 40px;
}

.comment-reply-title {
    margin-bottom: 25px;
    color: var(--text-dark);
}

.comment-form-styled {
    display: grid;
    gap: 20px;
}

.comment-form-styled .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.comment-form-author,
.comment-form-email,
.comment-form-url,
.comment-form-comment {
    margin: 0;
}

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

.comment-form-styled input[type="text"],
.comment-form-styled input[type="email"],
.comment-form-styled input[type="url"],
.comment-form-styled textarea {
    width: 100%;
    padding: 12px 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-base);
}

.comment-form-styled input:focus,
.comment-form-styled textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 102, 204, 0.1);
}

.comment-form-styled textarea {
    resize: vertical;
    min-height: 120px;
}

/* ======== SIDEBAR STYLES ======== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.widget {
    background: var(--white-color);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.widget-title {
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-color);
    color: var(--text-dark);
    font-size: 1.2rem;
}

.widget-search .search-input-group {
    display: flex;
    gap: 8px;
}

.widget-search .search-field {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
}

.widget-search .search-submit {
    padding: 10px 20px;
    background: var(--primary-color);
    color: var(--white-color);
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
}

.widget-search .search-submit:hover {
    background: var(--secondary-color);
}

.recent-posts-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.recent-post-item:last-child {
    border-bottom: none;
}

.recent-post-thumb {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

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

.recent-post-info {
    flex: 1;
}

.recent-post-info h4 {
    margin-bottom: 8px;
    font-size: 0.95rem;
    line-height: 1.4;
}

.recent-post-info h4 a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

.recent-post-info h4 a:hover {
    color: var(--primary-color);
}

.recent-post-date {
    font-size: 0.8rem;
    color: var(--text-light);
}

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

.category-item,
.archive-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.category-item:last-child,
.archive-list li:last-child {
    border-bottom: none;
}

.category-item a,
.archive-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

.category-item a:hover,
.archive-list a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.category-count {
    color: var(--text-light);
    font-size: 0.85rem;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-item {
    display: inline-block;
    padding: 6px 14px;
    background: var(--light-color);
    color: var(--text-dark);
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.tag-item:hover {
    background: var(--primary-color);
    color: var(--white-color);
}

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

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

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--text-dark);
}

.contact-info-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.contact-info-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

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

.btn-block {
    width: 100%;
    text-align: center;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
}

.services-list li:last-child {
    border-bottom: none;
}

.services-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition-base);
}

.services-list a:hover {
    color: var(--primary-color);
    padding-left: 8px;
}

.services-list i {
    color: var(--primary-color);
}

.widget-social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: var(--light-color);
    color: var(--text-dark);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition-base);
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: var(--white-color);
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: var(--white-color);
}

.social-link.linkedin:hover {
    background: #0077b5;
    color: var(--white-color);
}

.social-link.instagram:hover {
    background: #e4405f;
    color: var(--white-color);
}

    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px var(--white-color), 0 0 0 12px var(--primary-color);
    z-index: 2;
}



/* Team Section */
.team-section {
    padding: var(--section-padding);
    background: var(--light-color);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

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

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

.member-image {
    width: 100%;
    height: 280px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

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

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.member-image i {
    font-size: 5rem;
    color: rgba(255, 255, 255, 0.6);
}

.member-info {
    padding: 25px 20px;
    text-align: center;
}

.member-info h4 {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 8px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.member-bio {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

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

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

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

/* Certifications Section */
.certifications-section {
    padding: var(--section-padding);
    background: var(--white-color);
}

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

.certification-card {
    background: var(--light-color);
    padding: 35px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.certification-card:hover {
    background: var(--white-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cert-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-base);
}

.certification-card:hover .cert-icon {
    transform: rotateY(360deg);
}

.cert-icon i {
    font-size: 2.5rem;
    color: var(--white-color);
}

.certification-card h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--dark-color);
    margin-bottom: 12px;
}

.certification-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: var(--section-padding);
    background: var(--gradient-dark);
    color: var(--white-color);
}

.why-choose-section .section-title,
.why-choose-section .section-subtitle {
    color: var(--white-color);
}

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

.why-item {
    background: rgba(255, 255, 255, 0.08);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition-base);
}

.why-item:hover .why-icon {
    transform: scale(1.1) rotate(360deg);
}

.why-icon i {
    font-size: 2rem;
    color: var(--white-color);
}

.why-item h4 {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    color: var(--white-color);
    margin-bottom: 12px;
}

.why-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ======== Utility Classes ======== */
.text-center {
    text-align: center;
}

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

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

.bg-dark {
    background-color: var(--dark-color);
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

/* ======== Accessibility ======== */
/* Skip Link */
.skip-link {
    position: absolute;
    top: -60px;
    left: 10px;
    background: var(--primary-color);
    color: var(--white-color);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    text-decoration: none;
    z-index: 10000;
    font-weight: 500;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 10px;
    outline: 3px solid var(--accent-color);
    outline-offset: 4px;
}

/* Focus Visible Global */
*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 4px;
}

a:focus-visible,
button:focus-visible {
    outline-width: 3px;
}

/* Navigation Links Focus */
.nav-links a:focus-visible {
    outline-color: var(--white-color);
    outline-offset: 2px;
}

/* Card Focus */
.service-card:focus-visible,
.feature-card:focus-visible,
.reference-card:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 4px;
    box-shadow: var(--shadow-xl);
}

/* Form Elements Focus */
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-color: var(--primary-color);
}

/* Remove default focus for mouse users (keep for keyboard) */
*:focus:not(:focus-visible) {
    outline: none;
}

/* ======== Smooth Scroll ======== */
html {
    scroll-behavior: smooth;
}

/* ======== Selection Style ======== */
::selection {
    background: var(--primary-color);
    color: var(--white-color);
}

::-moz-selection {
    background: var(--primary-color);
    color: var(--white-color);
}

/* ======== Improved Image Rendering ======== */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* ======== Link Styles ======== */
a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

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

/* ======== Card Hover Effects Enhancement ======== */
.service-card,
.feature-card,
.reference-card,
.team-member,
.certification-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.feature-card:hover,
.reference-card:hover,
.team-member:hover,
.certification-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* ========================================
   CONTACT PAGE & FORMS STYLES
   ======================================== */

/* Contact Page Layout */
.contact-page .page-header {
    padding: 80px 0 60px;
    position: relative;
    overflow: hidden;
}

.contact-page .page-header-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.contact-page .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.contact-page .breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-page .breadcrumb a:hover {
    color: #fff;
}

.contact-page .page-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.contact-page .page-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    font-size: 15px;
}

/* Form Messages */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    font-size: 18px;
}

/* Contact Form */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.contact-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form label i {
    color: var(--primary-color);
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
    background: #fff;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 102, 204, 0.1);
}

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

.contact-form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='%23333' d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 12px;
    appearance: none;
}

/* Checkbox Group */
.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label span {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

/* Form Notice */
.form-notice {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #666;
    margin-top: 15px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 6px;
}

.form-notice i {
    color: var(--primary-color);
    font-size: 14px;
}

/* Contact Info Wrapper */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info-icon i {
    font-size: 24px;
    color: #fff;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.contact-info-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 8px;
}

.contact-info-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info-card a:hover {
    color: var(--secondary-color);
}

.info-hours {
    font-size: 14px;
    color: #888;
    margin-top: 8px;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    margin-top: 10px;
    transition: gap 0.3s;
}

.info-link:hover {
    gap: 12px;
}

/* Opening Hours */
.opening-hours {
    margin-top: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span {
    font-size: 14px;
    color: #666;
}

.hours-row strong {
    color: #333;
}

/* Contact Social */
.contact-social {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.contact-social h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.social-links-contact {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Map Section */
.map-section {
    margin-top: 0;
    padding: 0;
}

.map-section .section-header {
    text-align: center;
    padding: 40px 0 30px;
    background: #f8f9fa;
}

.map-section .section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.map-container {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
    color: #666;
    text-align: center;
    padding: 40px;
}

.map-placeholder i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    margin: 5px 0;
    font-size: 16px;
}

.map-placeholder p strong {
    color: #333;
}

/* Newsletter Form (Footer) */
.newsletter-form {
    margin-top: 15px;
}

.newsletter-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 12px;
}

.newsletter-form input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s;
}

.newsletter-form input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button[type="submit"] {
    width: 100%;
    padding: 12px 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 500;
}

.newsletter-form button[type="submit"]:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.newsletter-form button[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-consent {
    margin-top: 12px;
}

.newsletter-consent .checkbox-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
}

.newsletter-consent input[type="checkbox"] {
    width: 16px;
    height: 16px;
    min-width: 16px;
}

/* Newsletter Messages */
.newsletter-message {
    padding: 12px 16px;
    border-radius: 6px;
    margin-top: 15px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: slideDown 0.3s ease;
}

.newsletter-message.success {
    background: rgba(0, 168, 107, 0.15);
    color: #00a86b;
    border: 1px solid rgba(0, 168, 107, 0.3);
}

.newsletter-message.error {
    background: rgba(255, 0, 0, 0.15);
    color: #dc3545;
    border: 1px solid rgba(255, 0, 0, 0.3);
}

/* Button Loading State */
.btn-loading {
    display: none;
}

button:disabled .btn-loading {
    display: inline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-form-wrapper,
    .contact-info-card {
        padding: 25px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-page .page-title {
        font-size: 32px;
    }
    
    .contact-page .page-description {
        font-size: 16px;
    }
    
    /* Newsletter déjà en colonne par défaut */
    .footer-column {
        text-align: center;
    }
    
    /* Engagement Section Responsive */
    .engagement-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .engagement-text {
        padding-right: 0;
    }
    
    .engagement-title {
        font-size: 2rem;
    }
    
    .engagement-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .engagement-image {
        min-height: 400px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .form-header h2 {
        font-size: 24px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .info-icon {
        width: 50px;
        height: 50px;
    }
    
    .info-icon i {
        font-size: 20px;
    }
    
    .map-container {
        height: 300px;
    }
    
    /* Footer bottom responsive */
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-bottom-social {
        justify-content: center;
    }
    
    /* Engagement Section Mobile */
    .engagement-title {
        font-size: 1.75rem;
    }
    
    .engagement-description {
        font-size: 1rem;
    }
    
    .engagement-image {
        min-height: 300px;
    }
}
