/* style.css */
:root {
    --primary-color: #085296;
    --primary-color-transparant: rgba(8, 81, 150, 0.9);
    --secondary-color: #001327;
    --secondary-color-transparent: rgba(0, 19, 39, 0.9);
    --accent-color: #033665;
    --text-light: #ffffff;
    --text-dark: #001327;
    --font-main: 'Sarabun', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

body {
    font-family: var(--font-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: transparent;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
    z-index: 1000;
}

.header .inner-width {
    width: 100%;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header .inner-width .logo-site {
    width: 150px;
    transition: var(--transition);
}

.header .inner-width .logo-site img {
    width: 100%;
    height: auto;
}

/* Mobile Menu */
.header .inner-width .menu-toggle {
    width: 30px;
    height: 25px;
    border: none;
    background: none;
    cursor: pointer;
    display: none;
    z-index: 1000;
    flex-direction: column;
    justify-content: space-between;
}

.header .inner-width .menu-toggle span {
    display: block;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
    border-radius: 2px;
}

/* Navigation */
.header .inner-width .nav-menu {
    padding: 10px 0px;
}

.header .inner-width .menu {
    list-style: none;
    display: flex;
    margin: 0;
}

.header .inner-width .menu > .menu-item {
    margin-left: 30px;
}

.header .inner-width .menu > .menu-item > a {
    display: block;
    color: var(--text-light);
    font-size: 0.9375rem;
    padding: 25px 0;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.header .inner-width .menu > .menu-item > a::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.header .inner-width .menu > .menu-item:hover > a::after {
    width: 100%;
}

/* Sticky Header */
.sticky {
    background-color: var(--text-light);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.sticky .inner-width .menu > .menu-item > a {
    color: var(--text-dark);
}

.sticky .inner-width .menu-toggle span {
    background-color: var(--text-dark);
}

/* Hero Section */
.full-banner {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    background: url("/assets/imgs/backgrounds/bg-img.jpg") no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 500;
}

.inner-full-banner {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(16, 0, 34, 0.8) 0%, rgba(15, 16, 48, 0.8) 100%);
}

/* Owl Carousel Styles */

.slider-inner.owl-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-inner .owl-stage-outer,
.slider-inner .owl-stage,
.slider-inner .owl-item {
    height: 100%;
}

.slider-inner .banner-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80vh;
    height: 100%;
    padding: 40px 0;
}

/* Navigation arrows */
.slider-inner .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-inner .owl-nav button {
    background: rgba(255, 255, 255, 0.2) !important;
    color: var(--text-light) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    transition: var(--transition);
    pointer-events: all;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.slider-inner .owl-nav button:hover {
    background: var(--primary-color) !important;
    transform: scale(1.1);
}

/* Dots navigation */
.slider-inner .owl-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.slider-inner .owl-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5) !important;
    border-radius: 50%;
    transition: var(--transition);
}

.slider-inner .owl-dot.active {
    background: var(--primary-color) !important;
    transform: scale(1.2);
}

.slider-inner .owl-dot:hover {
    background: var(--primary-color) !important;
}

.banner-text {
    flex: 1;
    padding: 0 40px;
    color: var(--text-light);
    border-left: 3px solid var(--primary-color);
}

.banner-text .title-banner {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.banner-text .title-banner span {
    color: var(--primary-color);
    display: block;
}

.banner-text .paragraph {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.banner-img {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-img img {
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
}

.banner-img .box {
    position: absolute;
    width: 500px;
    height: 500px;
    background: var(--primary-color);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morph 8s ease-in-out infinite;
    opacity: 0.8;
    z-index: 1;
}

@keyframes morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
    .banner-text .title-banner {
        font-size: 2.8rem;
    }
    
    .banner-text .paragraph {
        font-size: 1.1rem;
    }
    
    .banner-img .box {
        width: 400px;
        height: 400px;
    }
}

@media screen and (max-width: 950px) {
    .header .inner-width {
        padding: 0 15px;
    }
    
    .header .inner-width .logo-site {
        width: 130px;
    }
    
    .header .inner-width .menu-toggle {
        display: flex;
    }
    
    .header .inner-width .nav-menu {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        right: -100%;
        max-width: 400px;
        padding: 100px 20px;
        background-color: var(--secondary-color);
        transition: var(--transition);
        z-index: 999;
    }
    
    .header .inner-width .menu {
        flex-direction: column;
    }
    
    .header .inner-width .menu > .menu-item {
        margin: 0;
    }
    
    .header .inner-width .menu > .menu-item > a {
        color: var(--text-light);
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 1.1rem;
    }
    
    .header .inner-width .menu > .menu-item:first-child > a {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .header .inner-width .nav-menu.active {
        right: 0;
    }
    
    .header .inner-width .menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    
    .header .inner-width .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .header .inner-width .menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    
    .slider-inner .banner-item {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 80px 0 40px;
    }
    
    .banner-text {
        border-left: none;
        padding: 0 20px;
        margin-bottom: 40px;
    }
    
    .banner-text .title-banner {
        font-size: 2.2rem;
        text-align: center;
    }
    
    .banner-text .paragraph {
        text-align: center;
        font-size: 1rem;
    }
    
    .banner-img {
        width: 100%;
    }
    
    .banner-img .box {
        width: 300px;
        height: 300px;
    }
    
    /* Mobile navigation adjustments */
    .slider-inner .owl-nav {
        display: none;
    }
    
    .slider-inner .owl-dots {
        bottom: 20px;
    }
}

@media screen and (max-width: 480px) {
    .banner-text .title-banner {
        font-size: 1.8rem;
    }
    
    .cta-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .banner-img .box {
        width: 250px;
        height: 250px;
    }
}

/* about section */
/* About Section Styles */
.about-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    background: url("/assets/imgs/backgrounds/bg-img-banner.jpg") no-repeat;
    background-attachment: fixed;
    position: relative;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section Header */
.about-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.section-subtitle::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.section-title span {
    color: var(--primary-color);
}
.section-title .green-span {
    color: #00803a;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* About Main Content */
.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Column */
.about-left {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    padding: 20px;
    color: white;
    box-shadow: 0 15px 30px rgba(8, 82, 150, 0.3);
    animation: pulse 2s infinite;
}

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

.badge-content {
    text-align: center;
}

.years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.badge-content .text {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    background: white;
    padding: 25px 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: white;
}
.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Right Column */
.about-right {
    padding-left: 20px;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.about-text .lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
    font-weight: 500;
}

.features-list {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 5px;
    border-left: #fff solid 3px;
    border-right: #fff solid 3px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateX(10px);
    border-left: #00803a solid 3px;
    border-right: #085296 solid 3px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition:  1s ease-in-out;
}

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

.feature-icon .green-color{
    width: 60px;
    height: 60px;
    background: #00803a;
     border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-content h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Buttons */
.about-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 10px 20px rgba(8, 82, 150, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(8, 82, 150, 0.4);
    color: white;
}

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

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

/* Values Section */
/* Values Section - Professional Redesign */
.values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #e5ebfb 0%, #ffffff 50%, #566073 100%);
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000" opacity="0.02"><polygon fill="%23085296" points="0,1000 1000,0 1000,1000"/></svg>');
    background-size: cover;
    pointer-events: none;
}

.values-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.values-header .section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.values-header .section-subtitle::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.values-header .section-subtitle::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.values-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.values-header h2 span {
    color: var(--primary-color);
    position: relative;
}

.values-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(8, 82, 150, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.values-header .section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1300px;
    margin: 0 auto 80px;
}

.value-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(8, 82, 150, 0.15);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.card-inner {
    padding: 40px 30px;
    position: relative;
    height: 100%;
}

.value-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.4s ease;
}

.value-card:hover .icon-bg {
    transform: rotate(0deg);
    border-radius: 50%;
}

.value-icon i {
    font-size: 2rem;
    color: white;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
    transform: scale(1.1);
}

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

.value-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.value-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.value-card:hover .value-content h3::after {
    width: 80px;
}

.value-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.value-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.value-features li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.value-features li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.value-features li i {
    color: var(--primary-color);
    margin-right: 10px;
    font-size: 0.8rem;
    background: rgba(8, 82, 150, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.value-features li:hover i {
    background: var(--primary-color);
    color: white;
}

.value-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(8, 82, 150, 0.09);
    line-height: 1;
    transition: all 0.3s ease;
}

.value-card:hover .value-number {
    color: rgba(8, 82, 150, 0.08);
    transform: scale(1.1);
}

/* CTA Section */
.values-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #001c3a 100%);
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.values-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 950px) {
    .values-section {
        padding: 80px 0;
    }
    
    .values-header {
        margin-bottom: 60px;
    }
    
    .values-header h2 {
        font-size: 2.5rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }
    
    .card-inner {
        padding: 35px 25px;
    }
    
    .values-cta {
        padding: 50px 40px;
    }
    
    .cta-content h3 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .values-section {
        padding: 60px 0;
    }
    
    .values-header h2 {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .values-header .section-subtitle::before,
    .values-header .section-subtitle::after {
        width: 30px;
        left: -40px;
        right: -40px;
    }
    
    .values-cta {
        padding: 40px 30px;
        margin: 0 15px;
    }
    
    .cta-content h3 {
        font-size: 1.8rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .values-section {
        padding: 50px 0;
    }
    
    .values-header h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .card-inner {
        padding: 30px 20px;
    }
    
    .value-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .value-icon i {
        font-size: 1.8rem;
    }
    
    .value-content h3 {
        font-size: 1.3rem;
    }
    
    .value-number {
        font-size: 3rem;
        top: 15px;
        right: 20px;
    }
    
    .values-cta {
        padding: 35px 25px;
    }
    
    .cta-content h3 {
        font-size: 1.6rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
}

/* Animation for value cards */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.value-card:hover {
    animation: float 3s ease-in-out infinite;
}
/* Responsive Design */
@media screen and (max-width: 1024px) {
    .about-main {
        gap: 40px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 950px) {
    .about-section {
        padding: 80px 0;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-right {
        padding-left: 0;
    }
    
    .about-header {
        margin-bottom: 60px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 40px auto 0;
    }
    
    .about-actions {
        justify-content: center;
    }
    
    .values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.6rem;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .about-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .experience-badge {
        position: relative;
        top: 0;
        right: 0;
        margin: -30px auto 30px;
        max-width: 200px;
    }
}

@media screen and (max-width: 480px) {
    .about-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .section-subtitle::before,
    .section-subtitle::after {
        width: 30px;
        left: -40px;
        right: -40px;
    }
    
    .about-image img {
        height: 400px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .values-header h2 {
        font-size: 2rem;
    }
    
    .value-card {
        padding: 30px 20px;
    }
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(8, 82, 150, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(8, 82, 150, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.services-header .section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.services-header .section-subtitle::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.services-header .section-subtitle::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.services-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.services-header h2 span {
    color: var(--primary-color);
    position: relative;
}

.services-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(8, 82, 150, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.services-header .section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.services-header .section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto 80px;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrapper {
    position: relative;
    z-index: 2;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper {
    transform: rotateY(180deg);
    border-radius: 50%;
}

.icon-wrapper i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
}

.service-card:hover .icon-wrapper i {
    transform: rotateY(-180deg);
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(8, 82, 150, 0.05);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
}

.service-card:hover .icon-bg {
    opacity: 1;
    width: 120px;
    height: 120px;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 15px;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.service-card:hover h3::after {
    width: 80px;
}

.service-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    color: #555;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.service-features li:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.service-features li i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 0.8rem;
    background: rgba(8, 82, 150, 0.1);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-features li:hover i {
    background: var(--primary-color);
    color: white;
}

.service-actions {
    margin-top: auto;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(8, 82, 150, 0.3);
    position: relative;
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

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

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(8, 82, 150, 0.4);
}

.service-btn i {
    transition: transform 0.3s ease;
}

.service-btn:hover i {
    transform: translateX(5px);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(8, 82, 150, 0.09);
    line-height: 1;
    transition: all 0.3s ease;
}

.service-card:hover .service-number {
    color: rgba(8, 82, 150, 0.05);
    transform: scale(1.1);
}

/* Services CTA */
.services-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #001c3a 100%);
    border-radius: 25px;
    padding: 60px 50px;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.services-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.cta-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
}

.cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
}

.cta-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 10px 20px rgba(8, 82, 150, 0.3);
}

.cta-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(8, 82, 150, 0.4);
}

.cta-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: white;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
}

@media screen and (max-width: 950px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-header {
        margin-bottom: 60px;
    }
    
    .services-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }
    
    .service-card {
        padding: 35px 25px;
    }
    
    .services-cta {
        padding: 50px 40px;
    }
    
    .cta-text h3 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .services-header h2 {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .services-header .section-subtitle::before,
    .services-header .section-subtitle::after {
        width: 30px;
        left: -40px;
        right: -40px;
    }
    
    .services-cta {
        padding: 40px 30px;
        margin: 0 15px;
    }
    
    .cta-text h3 {
        font-size: 1.8rem;
    }
    
    .cta-actions {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .cta-actions .btn {
        flex: 1;
        min-width: 200px;
    }
}

@media screen and (max-width: 480px) {
    .services-section {
        padding: 50px 0;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }
    
    .icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .icon-wrapper i {
        font-size: 1.6rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-number {
        font-size: 3rem;
        top: 15px;
        right: 20px;
    }
    
    .services-cta {
        padding: 35px 25px;
    }
    
    .cta-text h3 {
        font-size: 1.6rem;
    }
    
    .cta-text p {
        font-size: 1.1rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .cta-actions .btn {
        width: 100%;
    }
}

/* Animation for service cards */
@keyframes serviceFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.service-card:hover {
    animation: serviceFloat 3s ease-in-out infinite;
}

/* Projects Section */
.projects-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f0f5ff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(8, 82, 150, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(8, 82, 150, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.projects-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.projects-header .section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.projects-header .section-subtitle::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.projects-header .section-subtitle::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.projects-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.projects-header h2 span {
    color: var(--primary-color);
    position: relative;
}

.projects-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(8, 82, 150, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.projects-header .section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.projects-header .section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Projects Filter */
.projects-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    position: relative;
}

.filter-btn {
    padding: 12px 25px;
    background: white;
    border: 2px solid #e0e6f5;
    border-radius: 50px;
    color: #666;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(8, 82, 150, 0.1), transparent);
    transition: left 0.5s ease;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 82, 150, 0.1);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(8, 82, 150, 0.3);
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.project-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    background: white;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(8, 82, 150, 0.15);
}

.project-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

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

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

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(8, 82, 150, 0.9), rgba(3, 54, 101, 0.9));
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px;
    color: white;
}

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

.project-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .project-content {
    transform: translateY(0);
}

.project-category {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    backdrop-filter: blur(10px);
}

.project-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.project-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.9;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.project-tags span {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.project-tags span:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.project-actions {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.project-card:hover .project-actions {
    transform: translateY(0);
}

.project-btn {
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.project-btn:hover {
    background: white;
    color: var(--primary-color);
    transform: scale(1.1);
}

/* Category-specific colors */
.project-card[data-category="reseau"] .project-category {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.project-card[data-category="video"] .project-category {
    background: linear-gradient(135deg, #f093fb, #f5576c);
}

.project-card[data-category="acces"] .project-category {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.project-card[data-category="alarme"] .project-category {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.project-card[data-category="developpement"] .project-category {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.project-card[data-category="formation"] .project-category {
    background: linear-gradient(135deg, #a8edea, #fed6e3);
}

/* Projects CTA */
.projects-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #001c3a 100%);
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.projects-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.projects-cta .cta-content {
    position: relative;
    z-index: 2;
}

.projects-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.projects-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
}

.projects-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(8, 82, 150, 0.3);
}

.projects-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(8, 82, 150, 0.4);
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media screen and (max-width: 950px) {
    .projects-section {
        padding: 80px 0;
    }
    
    .projects-header {
        margin-bottom: 50px;
    }
    
    .projects-header h2 {
        font-size: 2.5rem;
    }
    
    .projects-filter {
        margin-bottom: 40px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto 60px;
    }
    
    .projects-cta {
        padding: 50px 40px;
    }
    
    .projects-cta h3 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 768px) {
    .projects-section {
        padding: 60px 0;
    }
    
    .projects-header h2 {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .projects-header .section-subtitle::before,
    .projects-header .section-subtitle::after {
        width: 30px;
        left: -40px;
        right: -40px;
    }
    
    .projects-filter {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .projects-cta {
        padding: 40px 30px;
        margin: 0 15px;
    }
    
    .projects-cta h3 {
        font-size: 1.8rem;
    }
    
    .project-image {
        height: 250px;
    }
    
    .project-overlay {
        padding: 25px;
    }
}

@media screen and (max-width: 480px) {
    .projects-section {
        padding: 50px 0;
    }
    
    .projects-header h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .projects-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        width: 200px;
        text-align: center;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        height: 220px;
    }
    
    .project-overlay {
        padding: 20px;
    }
    
    .project-content h3 {
        font-size: 1.2rem;
    }
    
    .projects-cta {
        padding: 35px 25px;
    }
    
    .projects-cta h3 {
        font-size: 1.6rem;
    }
    
    .projects-cta p {
        font-size: 1.1rem;
    }
    
    .projects-cta .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Animation for project cards */
@keyframes projectFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.project-card:hover {
    animation: projectFloat 3s ease-in-out infinite;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.contact-header .section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.contact-header .section-subtitle::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.contact-header .section-subtitle::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.contact-header h2 span {
    color: var(--primary-color);
    position: relative;
}

.contact-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(8, 82, 150, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.contact-header .section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.contact-header .section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Contact Info */
.contact-info {
    padding-right: 40px;
}

.contact-intro h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-intro p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.contact-methods {
    margin-bottom: 50px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.method-icon i {
    font-size: 1.5rem;
    color: white;
}

.method-content h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.method-content a, .method-content p {
    display: block;
    color: #666;
    text-decoration: none;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

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

/* Social Links */
.social-links h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

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

.social-link {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(8, 82, 150, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid #eef2f8;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px 15px 50px;
    border: 2px solid #e0e6f5;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8faff;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 5px 15px rgba(8, 82, 150, 0.1);
}

.form-group i {
    position: absolute;
    left: 20px;
    top: 70%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.1rem;
}

.form-group textarea + i {
    top: 55px;
    transform: none;
}

.form-group select {
    appearance: none;
    cursor: pointer;
}

.submit-btn {
    position: relative;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(8, 82, 150, 0.3);
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(8, 82, 150, 0.4);
}

.btn-loading {
    display: none;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.submit-btn.loading {
    pointer-events: none;
}


/* Clients & Partners Section */
.clients-partners-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
    position: relative;
}

.clients-partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(8, 82, 150, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(8, 82, 150, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.section-header .section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
}

.section-header .section-subtitle::before {
    content: '';
    position: absolute;
    left: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.section-header .section-subtitle::after {
    content: '';
    position: absolute;
    right: -60px;
    top: 50%;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.section-header h2 span {
    color: var(--primary-color);
    position: relative;
}

.section-header h2 span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(8, 82, 150, 0.15);
    z-index: -1;
    border-radius: 4px;
}

.section-header .section-description {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

.section-header .section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    margin: 0 auto;
    border-radius: 2px;
}

/* Section Intro */
.section-intro {
    text-align: center;
    margin-bottom: 50px;
}

.section-intro h3 {
    font-size: 2.2rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-intro p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Clients Section */
.clients-section {
    margin-bottom: 100px;
}

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

.client-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f8;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(8, 82, 150, 0.15);
}

.client-card:hover::before {
    transform: scaleX(1);
}

.client-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border-radius: 15px;
    background: linear-gradient(135deg, #f8faff, #eef2f8);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border: 2px solid #eef2f8;
    transition: all 0.3s ease;
}

.client-card:hover .client-logo {
    transform: scale(1.1);
    border-color: var(--primary-color);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(1);
    transition: filter 0.3s ease;
}

.client-card:hover .client-logo img {
    filter: grayscale(0);
}

.client-info {
    text-align: center;
    margin-bottom: 20px;
}

.client-info h4 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.client-info p {
    color: #666;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.client-project {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(8, 82, 150, 0.1);
    color: var(--primary-color);
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
}

.client-quote {
    position: relative;
    padding: 20px;
    background: #f8faff;
    border-radius: 15px;
    text-align: center;
}

.client-quote i {
    position: absolute;
    top: 10px;
    left: 15px;
    color: var(--primary-color);
    font-size: 1.2rem;
    opacity: 0.3;
}

.client-quote p {
    color: #555;
    font-style: italic;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Partners Section */
.partners-section {
    margin-bottom: 100px;
}

.partners-carousel {
    position: relative;
}

.partner-item {
    background: white;
    border-radius: 20px;
    padding: 30px;
    margin: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #eef2f8;
    transition: all 0.3s ease;
    text-align: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.partner-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(8, 82, 150, 0.1);
}

.partner-logo {
    width: 170px;
    height: 100px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-item:hover .partner-logo img {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.1);
}

.partner-info h4 {
    font-size: 1.1rem;
    color: var(--secondary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.partner-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Partners Carousel Navigation */
.partners-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.partners-carousel .owl-nav button {
    background: rgba(255, 255, 255, 0.9) !important;
    color: var(--primary-color) !important;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px !important;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eef2f8 !important;
}

.partners-carousel .owl-nav button:hover {
    background: var(--primary-color) !important;
    color: white !important;
    transform: scale(1.1);
}

.partners-carousel .owl-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.partners-carousel .owl-dot {
    width: 10px;
    height: 10px;
    background: #ddd !important;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.partners-carousel .owl-dot.active {
    background: var(--primary-color) !important;
    transform: scale(1.2);
}

/* Stats Section */
.clients-stats {
    margin-bottom: 80px;
}

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

.stat-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #eef2f8;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(8, 82, 150, 0.12);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.stat-icon i {
    font-size: 1.8rem;
    color: white;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: #666;
    font-size: 1rem;
    font-weight: 500;
}

/* CTA Section */
.clients-cta {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #001c3a 100%);
    border-radius: 25px;
    padding: 60px 50px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.clients-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.clients-cta .cta-content {
    position: relative;
    z-index: 2;
}

.clients-cta h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

.clients-cta p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 10px 20px rgba(8, 82, 150, 0.3);
}

.cta-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(8, 82, 150, 0.4);
}

.cta-actions .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.cta-actions .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    border-color: white;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 950px) {
    .clients-partners-section {
        padding: 80px 0;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .clients-section, .partners-section {
        margin-bottom: 80px;
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .clients-cta {
        padding: 50px 40px;
    }
    
    .clients-cta h3 {
        font-size: 2rem;
    }
    
    .partners-carousel .owl-nav {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .clients-partners-section {
        padding: 60px 0;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .section-header .section-subtitle::before,
    .section-header .section-subtitle::after {
        width: 30px;
        left: -40px;
        right: -40px;
    }
    
    .section-intro h3 {
        font-size: 1.8rem;
    }
    
    .clients-cta {
        padding: 40px 30px;
        margin: 0 15px;
    }
    
    .clients-cta h3 {
        font-size: 1.8rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .clients-partners-section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .client-card {
        padding: 25px 20px;
    }
    
    .partner-item {
        padding: 25px 20px;
        height: 180px;
    }
    
    .partner-logo {
        width: 80px;
        height: 60px;
    }
    
    .clients-cta {
        padding: 35px 25px;
    }
    
    .clients-cta h3 {
        font-size: 1.6rem;
    }
    
    .clients-cta p {
        font-size: 1.1rem;
    }
    
    .stat-item {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Animation for client cards */
@keyframes clientFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.client-card:hover {
    animation: clientFloat 2s ease-in-out infinite;
}


/* Map Section */
.map-section {
    height: 450px;
    position: relative;
}

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

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(0.2) contrast(1.1);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #001c3a 100%);
    color: white;
    padding: 80px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-logo img {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact i {
    color: var(--primary-color);
    width: 20px;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    color: white;
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.newsletter-group {
    position: relative;
    display: flex;
}

.newsletter-group input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.newsletter-group button {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-group button:hover {
    transform: translateY(-50%) scale(1.1);
}

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

.social-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

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

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    
    .contact-content {
        gap: 50px;
    }
}

@media screen and (max-width: 950px) {
    .contact-section {
        padding: 80px 0;
    }
    
    .contact-header {
        margin-bottom: 60px;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .footer {
        padding: 60px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media screen and (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-header h2 {
        font-size: 2.2rem;
    }
    
    .section-description {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .contact-header .section-subtitle::before,
    .contact-header .section-subtitle::after {
        width: 30px;
        left: -40px;
        right: -40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .method-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .map-section {
        height: 350px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-bottom-links {
        justify-content: center;
    }
}

@media screen and (max-width: 480px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 25px 20px;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px 12px 45px;
    }
    
    .submit-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .footer {
        padding: 50px 0 0;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-bottom-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .newsletter-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-group button {
        position: static;
        transform: none;
        width: 100%;
        height: 50px;
        border-radius: 25px;
        margin-top: 10px;
    }
}


/* Form Notifications */
.form-notification {
    position: fixed;
    top: 100px;
    right: 30px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border-left: 4px solid var(--primary-color);
    z-index: 10000;
    max-width: 400px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    animation: slideInRight 0.3s ease;
}

.form-notification-success {
    border-left-color: #28a745;
}

.form-notification-error {
    border-left-color: #dc3545;
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.notification-content i {
    font-size: 1.2rem;
}

.form-notification-success .notification-content i {
    color: #28a745;
}

.form-notification-error .notification-content i {
    color: #dc3545;
}

.notification-close {
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 5px;
    margin-left: 15px;
    transition: color 0.3s ease;
}

.notification-close:hover {
    color: #333;
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Field Errors */
.field-error {
    color: #dc3545;
    font-size: 0.85rem;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    /* border-color: #dc3545; */
}

/* Loading state improvements */
.submit-btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

.submit-btn.loading .btn-text {
    display: none;
}

.submit-btn.loading .btn-loading {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-loading {
    display: none;
}