:root {
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary: #0f172a;
    --dark: #1e293b;
    --light-bg: #f8fafc;
    --section-bg: #f1f5f9;
    --text-color: #475569;
    --heading-color: #0f172a;
    --white: #ffffff;
    --border: #e2e8f0;
    --input-bg: #f8fafc;
    --shadow-soft: 0 4px 15px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 25px 50px rgba(37, 99, 235, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Jost', sans-serif;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 110px 0;
}

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

.text-white {
    color: var(--white) !important;
}

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

.font-semibold {
    font-weight: 600;
}

.material-symbols-outlined {
    vertical-align: middle;
}

.icon-sm {
    font-size: 20px;
}

.icon-lg {
    font-size: 45px;
}

.icon-right {
    margin-left: 8px;
    font-size: 20px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -5px rgba(37, 99, 235, 0.6);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.6);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary);
    border-color: var(--white);
    transform: translateY(-4px);
}

.full-width {
    width: 100%;
}

.section-subtitle {
    color: var(--primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 15px;
    background: rgba(37, 99, 235, 0.1);
    padding: 6px 16px;
    border-radius: 30px;
}

.section-subtitle.light {
    color: var(--white);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(5px);
}

h2 {
    color: var(--heading-color);
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.topbar {
    background-color: var(--secondary);
    color: #cbd5e1;
    padding: 12px 0;
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.topbar-left span {
    margin-right: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.topbar-left span .material-symbols-outlined {
    color: var(--primary);
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.topbar-right a {
    width: 32px;
    height: 32px;
    background-color: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #cbd5e1;
}

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

.header {
    background-color: var(--white);
    padding: 15px 0;
    position: relative;
    z-index: 100;
    box-shadow: var(--shadow-soft);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    max-height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.footer-logo {
    max-height: 55px;
    filter: brightness(0) invert(1); 
}

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

.nav ul {
    display: flex;
    gap: 30px;
}

.nav ul li a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 15px;
    color: var(--secondary);
    text-transform: uppercase;
    position: relative;
    letter-spacing: 0.5px;
    padding: 8px 0;
}

.nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 3px;
    border-radius: 3px;
    background-color: var(--primary);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.header-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--light-bg);
    padding: 8px 20px 8px 8px;
    border-radius: 40px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.header-contact:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}

.contact-icon {
    width: 42px;
    height: 42px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(37,99,235,0.3);
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.call-text {
    font-size: 12px;
    color: var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.phone-number {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
}

.menu-toggle-checkbox {
    display: none;
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    background: var(--light-bg);
    color: var(--secondary);
    padding: 10px 15px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: 0.3s;
    font-weight: 600;
    align-items: center;
    gap: 8px;
}

.mobile-menu-btn .material-symbols-outlined {
    color: var(--primary);
    font-size: 28px;
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -360px;
    width: 360px;
    height: 100vh;
    background-color: #f8fafc;
    z-index: 1000;
    box-shadow: -15px 0 50px rgba(0,0,0,0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(15, 23, 42, 0.8);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    backdrop-filter: blur(5px);
}

#menu-toggle:checked ~ .mobile-sidebar {
    right: 0;
}

#menu-toggle:checked ~ .overlay {
    opacity: 1;
    visibility: visible;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--white);
    padding: 30px 25px 20px;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.close-btn {
    cursor: pointer;
    background-color: var(--light-bg);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--text-color);
    transition: 0.3s;
    border: 1px solid var(--border);
}

.close-btn:hover {
    background-color: #fee2e2; 
    color: #ef4444; 
    border-color: #fca5a5;
    transform: rotate(90deg); 
}

.mobile-nav {
    padding: 30px 25px 10px;
    display: flex;
    flex-direction: column;
}

.mobile-nav a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary);
    padding: 16px 20px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.02);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    margin-bottom: 12px;
    transition: 0.3s;
}

.mobile-nav a .material-symbols-outlined {
    background: rgba(37,99,235,0.1);
    color: var(--primary);
    padding: 8px;
    border-radius: 12px;
    transition: 0.3s;
}

.mobile-nav a:hover, .mobile-nav a.active {
    color: var(--white); 
    background: var(--primary);
    transform: translateX(5px);
    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}

.mobile-nav a:hover .material-symbols-outlined, 
.mobile-nav a.active .material-symbols-outlined {
    background: var(--white);
    color: var(--primary);
}

.sidebar-contact {
    padding: 20px 25px;
}

.sidebar-contact h3 {
    font-size: 20px; 
    color: var(--secondary); 
    margin-bottom: 20px; 
    display: flex;
    align-items: center;
    gap: 8px;
}

.sidebar-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sidebar-contact li {
    display: flex; 
    align-items: center; 
    gap: 15px; 
    background: var(--white);
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}

.s-icon {
    width: 45px;
    height: 45px;
    background: rgba(37,99,235,0.1);
    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.s-text {
    display: flex;
    flex-direction: column;
}

.s-text span {
    font-size: 12px;
    color: var(--text-color);
    text-transform: uppercase;
    font-weight: 600;
}

.s-text p {
    font-size: 15px;
    color: var(--secondary);
    font-weight: 700;
    margin: 0;
}

.sidebar-socials {
    margin-top: auto;
    padding: 25px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #25D366;
    color: white;
    padding: 18px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
}

.slider {
    position: relative;
    min-height: 85vh;
    background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slider-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.5) 100%);
    z-index: 0;
}

.bubbles {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.bubble {
    position: absolute;
    bottom: -100px;
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0.1) 60%, rgba(255,255,255,0.2) 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255,255,255,0.2), inset 0 0 10px rgba(255,255,255,0.6);
    animation: rise infinite ease-in;
    opacity: 0.5;
}

@keyframes rise {
    0% { bottom: -100px; transform: translateX(0) scale(1); opacity: 0; }
    20% { opacity: 0.7; }
    50% { transform: translateX(30px) scale(1.1); }
    80% { opacity: 0.4; }
    100% { bottom: 100%; transform: translateX(-30px) scale(1.2); opacity: 0; }
}

.slider-inner {
    position: relative;
    z-index: 10;
}

.slider-content {
    max-width: 750px;
    padding: 100px 0;
}

.slider .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(37, 99, 235, 0.25);
    color: #93c5fd;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 30px;
    border: 1px solid rgba(147, 197, 253, 0.3);
    backdrop-filter: blur(8px);
    letter-spacing: 1px;
}

.slider-content h1 {
    font-size: 72px;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

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

.slider-content p {
    color: #e2e8f0;
    font-size: 20px;
    margin-bottom: 45px;
    font-weight: 400;
    line-height: 1.7;
}

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

.about-inner {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-images {
    flex: 1;
    position: relative;
    height: 600px;
}

.img-box {
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
}

.img-1 {
    width: 75%;
    height: 480px;
    position: absolute;
    top: 0;
    left: 0;
}

.img-2 {
    width: 65%;
    height: 380px;
    position: absolute;
    bottom: 0;
    right: 0;
    border: 12px solid var(--white);
    z-index: 1;
}

.clean-badge {
    position: absolute;
    top: 45%;
    left: 45%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 45px;
    border: 8px solid var(--white);
    z-index: 2;
    box-shadow: var(--shadow-lg);
}

.about-content {
    flex: 1.1;
}

.about-desc {
    font-size: 18px;
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.7;
}

.modern-tabs-container {
    margin: 40px 0;
}

.modern-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    background: var(--light-bg);
    padding: 8px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.modern-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.modern-tab:hover {
    color: var(--primary);
    background: rgba(37,99,235,0.05);
}

.modern-tab.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37,99,235,0.3);
}

.modern-tab-content {
    display: none;
    animation: slideUpFade 0.5s ease forwards;
}

.modern-tab-content.active {
    display: block;
}

@keyframes slideUpFade {
    0% { opacity: 0; transform: translateY(15px); }
    100% { opacity: 1; transform: translateY(0); }
}

.tab-inner-box {
    background: var(--white);
    padding: 30px;
    border-radius: 16px;
    border-left: 5px solid var(--primary);
    box-shadow: var(--shadow-soft);
    border-top: 1px solid var(--border);
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.tab-inner-box h3 {
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-inner-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
}

.about-footer {
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.services {
    background-image: url('https://html.vecurosoft.com/poolito/demo/assets/img/bg/service-bg1.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    padding: 120px 0 100px;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(15, 23, 42, 0.92);
    z-index: 0;
}

.services .container {
    position: relative;
    z-index: 10;
}

.services-desc {
    max-width: 600px;
    margin: 0 auto;
    font-size: 18px;
    color: #cbd5e1;
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.carousel-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scroll 35s linear infinite;
    padding-top: 100px;
    padding-bottom: 60px;
}

.carousel-container:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-360px * 7 - 30px * 7)); } 
}

.img-card {
    width: 360px;
    background-color: var(--white);
    padding: 120px 30px 40px;
    border-radius: 16px 16px 50% 50% / 16px 16px 30px 30px;
    border-bottom: 8px solid var(--primary);
    position: relative;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
}

.img-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.img-card-top {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 170px;
    height: 170px;
    z-index: 2;
}

.img-wrap {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 10px solid var(--white);
    background-size: cover;
    background-position: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.4s;
}

.img-card:hover .img-wrap {
    border-color: var(--primary);
}

.icon-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 3;
}

.icon-badge .material-symbols-outlined {
    font-size: 30px;
}

.img-card-content h3 {
    font-size: 24px;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 800;
}

.img-card-content p {
    color: var(--text-color);
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 16px;
}

.arrow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(37,99,235,0.3);
}

.img-card:hover .arrow-btn {
    background-color: var(--secondary);
    transform: scale(1.1);
}

.quote-section {
    position: relative;
    background-color: var(--white);
}

.quote-header {
    margin-bottom: 60px;
}

.quote-wrapper {
    display: flex;
    background-color: var(--white);
    border-radius: 30px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border);
    overflow: hidden;
    min-height: 750px;
}

.quote-form-side {
    flex: 1.3;
    padding: 60px 50px;
    background-color: var(--white);
}

.quote-form-side h3 {
    font-size: 36px;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.form-desc {
    color: var(--text-color);
    margin-bottom: 40px;
    font-size: 18px;
}

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

.input-group {
    display: flex;
    flex-direction: column;
}

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

.input-group label {
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.input-with-icon {
    position: relative;
    width: 100%;
}

.input-with-icon > .material-symbols-outlined:not(.select-arrow) {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    pointer-events: none;
    font-size: 22px;
    transition: 0.3s;
}

.textarea-icon-wrapper > .top-icon {
    top: 25px !important; 
}

.input-with-icon input, 
.input-with-icon select, 
.input-with-icon textarea {
    width: 100%;
    padding: 18px 20px 18px 50px; 
    border-radius: 14px;
    border: 2px solid var(--border);
    background-color: var(--input-bg);
    outline: none;
    font-size: 16px;
    color: var(--heading-color);
    transition: all 0.3s ease;
    font-family: inherit;
}

.input-with-icon input:focus, 
.input-with-icon select:focus, 
.input-with-icon textarea:focus {
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.1);
}

.input-with-icon input:focus + .material-symbols-outlined,
.input-with-icon select:focus + .material-symbols-outlined,
.input-with-icon textarea:focus + .material-symbols-outlined,
.input-with-icon:focus-within > .material-symbols-outlined:not(.select-arrow) {
    color: var(--primary);
}

.input-with-icon textarea {
    resize: vertical;
    min-height: 140px;
}

.select-wrapper select {
    appearance: none;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: var(--text-color);
}

.submit-btn {
    margin-top: 35px;
    padding: 20px;
    font-size: 18px;
    border-radius: 14px;
}

.quote-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

.quote-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(15, 23, 42, 0.85) 100%);
    display: flex;
    align-items: center;
    padding: 60px;
}

.overlay-content {
    color: var(--white);
}

.overlay-content h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
}

.overlay-content p {
    font-size: 18px;
    margin-bottom: 45px;
    color: #e2e8f0;
    line-height: 1.7;
}

.contact-highlights {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-highlights li {
    display: flex;
    align-items: center;
    gap: 25px;
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 20px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-highlights li .material-symbols-outlined {
    font-size: 36px;
    background: var(--white);
    color: var(--primary);
    padding: 15px;
    border-radius: 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.contact-highlights li div {
    display: flex;
    flex-direction: column;
}

.contact-highlights li span {
    font-size: 14px;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-highlights li strong {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
}

.footer {
    background-color: var(--secondary);
    color: #94a3b8;
    position: relative;
}

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

.footer-main {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
    padding: 100px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 24px;
    margin-bottom: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

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

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37,99,235,0.3);
}

.links-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.links-grid a {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    font-size: 16px;
}

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

.links-grid .material-symbols-outlined {
    color: var(--primary);
    font-size: 20px;
}

.footer-bottom {
    padding: 30px 0;
    background-color: var(--dark);
    color: #94a3b8;
}

.bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-header-banner {
    position: relative;
    padding: 120px 0 100px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(37, 99, 235, 0.7));
    z-index: 1;
}

.page-header-banner .container {
    position: relative;
    z-index: 10;
}

.page-header-banner h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    word-break: break-word;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    padding: 12px 25px;
    border-radius: 30px;
    backdrop-filter: blur(5px);
    font-weight: 600;
    font-size: 15px;
    max-width: 100%;
}

.breadcrumb a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
    transition: 0.3s;
    word-break: break-word;
}

.breadcrumb a:hover {
    color: #93c5fd;
}

.breadcrumb .separator {
    font-size: 20px;
    color: rgba(255,255,255,0.6);
}

.breadcrumb .current {
    color: #93c5fd;
    word-break: break-word;
}

.about-ext-inner {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-ext-content {
    flex: 1;
}

.about-ext-content h2 span {
    color: var(--primary);
}

.about-ext-content .lead-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-list {
    margin-top: 30px;
}

.about-list ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    font-weight: 600;
    color: var(--heading-color);
}

.about-ext-image {
    flex: 1;
    position: relative;
    height: 550px;
    max-width: 100%;
}

.ext-img-main {
    width: 80%;
    height: 100%;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.ext-img-float {
    position: absolute;
    bottom: -30px;
    right: 0;
    width: 50%;
    height: 300px;
    border-radius: 24px;
    background-size: cover;
    background-position: center;
    border: 12px solid var(--white);
    box-shadow: var(--shadow-hover);
    max-width: calc(100% - 20px);
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: 10%;
    background: var(--primary);
    color: var(--white);
    padding: 20px;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(37,99,235,0.4);
    border: 6px solid var(--white);
    text-align: center;
    animation: float 4s ease-in-out infinite;
    max-width: 100%;
}

.experience-badge h3 {
    font-size: 32px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-badge span {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-choose-us {
    background-color: var(--section-bg);
}

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

.feature-box {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feature-box .f-icon {
    width: 70px;
    height: 70px;
    background: rgba(37,99,235,0.1);
    color: var(--primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: 0.3s;
}

.feature-box .f-icon .material-symbols-outlined {
    font-size: 36px;
}

.feature-box:hover .f-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(5deg) scale(1.1);
}

.feature-box h3 {
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-box p {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 0;
}

.cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
    background: rgba(255,255,255,0.1);
    padding: 50px 60px;
    border-radius: 24px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-content {
    flex: 1;
    max-width: 600px;
}

.cta-content h2 {
    color: var(--white);
    font-size: 36px;
    margin-bottom: 15px;
    word-break: break-word;
}

.cta-content p {
    color: #e2e8f0;
    font-size: 18px;
}

.cta-action {
    flex-shrink: 0;
}

.cta-btn {
    background: var(--white);
    color: var(--primary);
    padding: 20px 40px;
    font-size: 18px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    display: inline-block;
}

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

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

.services-page-section {
    background-color: var(--section-bg);
}

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

.grid-card {
    width: 100% !important;
    max-width: 420px;
    margin: 0 auto;
    flex-shrink: 1 !important;
}

.process-section {
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.process-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 60px;
    gap: 20px;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    max-width: 250px;
}

.step-icon {
    width: 100px;
    height: 100px;
    background: var(--light-bg);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px dashed var(--border);
    transition: 0.4s;
}

.step-icon .material-symbols-outlined {
    font-size: 45px;
    color: var(--primary);
    transition: 0.4s;
}

.step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 35px;
    height: 35px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    border: 3px solid var(--white);
    box-shadow: var(--shadow-soft);
    transition: 0.4s;
}

.process-step:hover .step-icon {
    background: var(--primary);
    border-style: solid;
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(37,99,235,0.2);
}

.process-step:hover .step-icon .material-symbols-outlined {
    color: var(--white);
}

.process-step:hover .step-number {
    background: var(--white);
    color: var(--primary);
    border-color: var(--primary);
}

.process-step h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.process-step p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    color: var(--border);
}

.process-arrow .material-symbols-outlined {
    font-size: 30px;
}

.contact-page-section {
    background-color: var(--section-bg);
}

.contact-wrapper-main {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-side {
    flex: 1;
    max-width: 100%;
}

.contact-page-title {
    margin-bottom: 40px;
}

.contact-page-title h2 {
    font-size: 40px;
    margin-bottom: 15px;
    word-break: break-word;
}

.contact-page-title p {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.7;
}

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

.info-box {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    word-break: break-word;
}

.info-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.ib-icon {
    width: 60px;
    height: 60px;
    background: rgba(37,99,235,0.1);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.ib-icon .material-symbols-outlined {
    font-size: 30px;
}

.info-box:hover .ib-icon {
    background: var(--primary);
    color: var(--white);
}

.ib-text h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.ib-text p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
}

.contact-form-side {
    flex: 1.2;
    background-color: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 100%;
}

.contact-form-side h3 {
    font-size: 32px;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.map-section {
    width: 100%;
    height: 450px;
    border-radius: 24px;
    overflow: hidden;
    margin-top: 80px;
    box-shadow: var(--shadow-hover);
    border: 5px solid var(--white);
}

.offerte-page-section {
    background-color: var(--section-bg);
}

.offerte-wrapper-main {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

.offerte-info-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 100%;
}

.offerte-info-side h2 {
    font-size: 42px;
    margin-bottom: 15px;
    word-break: break-word;
}

.offerte-info-side .lead-text {
    font-size: 18px;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 40px;
}

.trust-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.trust-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.ts-icon {
    width: 55px;
    height: 55px;
    background: var(--white);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    flex-shrink: 0;
    transition: 0.3s;
}

.ts-icon .material-symbols-outlined {
    font-size: 28px;
}

.trust-step:hover .ts-icon {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37,99,235,0.2);
}

.ts-content h3 {
    font-size: 20px;
    color: var(--heading-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.ts-content p {
    color: var(--text-color);
    font-size: 15px;
    line-height: 1.6;
}

.guarantee-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--white);
    box-shadow: var(--shadow-hover);
    margin-top: auto;
}

.guarantee-box h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 5px;
}

.guarantee-box p {
    font-size: 15px;
    color: #e2e8f0;
    margin: 0;
    line-height: 1.5;
}

.offerte-form-side {
    flex: 1.4;
    background-color: var(--white);
    padding: 50px;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    max-width: 100%;
}

.offerte-form-side h3 {
    font-size: 32px;
    color: var(--heading-color);
    margin-bottom: 10px;
    font-weight: 800;
}

.frequency-options {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.frequency-options input[type="radio"] {
    display: none;
}

.frequency-options label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background-color: var(--input-bg);
    border: 2px solid var(--border);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    text-align: center;
}

.frequency-options label:hover {
    border-color: #93c5fd;
    background-color: #eff6ff;
    color: var(--primary);
}

.frequency-options input[type="radio"]:checked + label {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.mt-15 { margin-top: 15px; }
.mt-40 { margin-top: 40px; }

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

.service-detail-wrapper {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.service-sidebar {
    width: 320px;
    max-width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
}

.sidebar-widget .widget-title {
    font-size: 22px;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 15px;
}

.service-list-widget {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-list-widget a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background-color: var(--input-bg);
    border-radius: 12px;
    font-weight: 600;
    color: var(--text-color);
    transition: all 0.3s ease;
    word-break: break-word;
}

.service-list-widget a .material-symbols-outlined {
    color: var(--primary);
    transition: 0.3s;
    flex-shrink: 0;
}

.service-list-widget a:hover,
.service-list-widget a.active {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(37,99,235,0.2);
    transform: translateX(5px);
}

.service-list-widget a:hover .material-symbols-outlined,
.service-list-widget a.active .material-symbols-outlined {
    color: var(--white);
}

.help-widget {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--white);
    text-align: center;
}

.help-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(5px);
}

.help-icon .material-symbols-outlined {
    font-size: 36px;
    color: var(--white);
}

.help-widget h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.help-widget p {
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.6;
}

.service-content {
    flex: 1;
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border);
    max-width: 100%;
}

.service-main-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 35px;
    box-shadow: var(--shadow-lg);
}

.service-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    word-break: break-word;
}

.service-content h3 {
    font-size: 28px;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.service-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 20px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--input-bg);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: 0.3s;
}

.feature-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.feature-item .material-symbols-outlined {
    font-size: 30px;
    background: var(--white);
    padding: 10px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 18px;
    color: var(--heading-color);
    margin-bottom: 5px;
    font-weight: 700;
}

.feature-item p {
    font-size: 15px;
    margin: 0;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--input-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.accordion-header {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    gap: 15px;
}

.accordion-header .arrow {
    transition: transform 0.3s ease;
    color: var(--primary);
    flex-shrink: 0;
}

.accordion-item.active {
    border-color: var(--primary);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.accordion-item.active .accordion-header {
    color: var(--primary);
}

.accordion-item.active .arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 0 25px 25px;
    margin: 0;
    color: var(--text-color);
    line-height: 1.7;
}