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

:root {
    --primary-color: #00CED1;
    --secondary-color: #20B2AA;
    --dark-bg: #ffffff;
    --dark-card: #f8f9fa;
    --dark-lighter: #e9ecef;
    --dark-section-1: #ffffff;
    --dark-section-2: #f8f9fa;
    --dark-section-3: #f1f3f5;
    --gradient-primary: linear-gradient(135deg, #20B2AA 0%, #00CED1 100%);
    --gradient-dark: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    --text-primary: #0f1b2a;
    --text-secondary: #2f3b4c;
    --text-muted: #4a5563;
    --accent-gold: #40E0D0;
    --border-color: rgba(0, 206, 209, 0.15);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.5px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ===========================
   Navigation
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 206, 209, 0.15);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo i {
    font-size: 28px;
}

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

.nav-menu a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: var(--transition);
    position: relative;
}

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

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

.nav-menu a:hover::after {
    width: 100%;
}

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

.call-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: var(--primary-color);
    border-radius: 50px;
}

.call-info i {
    font-size: 20px;
    color: #ffffff;
}

.call-info div {
    display: flex;
    flex-direction: column;
}

.call-label {
    font-size: 11px;
    color: #ffffff;
    font-weight: 500;
}

.call-number {
    font-size: 14px;
    font-weight: bold;
    color: #ffffff;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    padding: 8px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
    background: linear-gradient(180deg, #f9feff 0%, #f2fbfd 50%, #ffffff 100%);
}

.hero-bg-effect {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 206, 209, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(32, 178, 170, 0.12) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.hero-text h1 {
    font-size: 58px;
    line-height: 1.15;
    margin-bottom: 25px;
    font-weight: 800;
    letter-spacing: -1px;
}

.highlight {
    color: var(--primary-color);
    display: block;
    background: linear-gradient(135deg, #20B2AA 0%, #00CED1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text > p {
    font-size: 19px;
    color: var(--text-secondary);
    margin-bottom: 45px;
    line-height: 1.8;
    max-width: 90%;
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.stat-item h3 {
    font-size: 52px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    line-height: 1;
}

.stat-item p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    letter-spacing: 0.5px;
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.2);
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.4);
}

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

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.15) 0%, transparent 70%);
    animation: pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

.hero-main-img {
    width: 100%;
    max-width: 650px;
    height: 550px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 206, 209, 0.3), 0 0 60px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--border-color);
    object-fit: cover;
    animation: fadeInScale 1s ease-out;
}

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

.floating-card {
    position: absolute;
    bottom: 40px;
    right: -50px;
    background: linear-gradient(135deg, rgba(11, 30, 52, 0.92) 0%, rgba(14, 48, 72, 0.9) 100%);
    padding: 35px 50px;
    border-radius: 25px;
    border: 3px solid var(--primary-color);
    text-align: center;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 25px 60px rgba(0, 206, 209, 0.32), 0 0 40px rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(10px);
    min-width: 200px;
}

.floating-card h3 {
    font-size: 56px;
    color: var(--primary-color);
    margin-bottom: 5px;
    text-shadow: 0 0 20px rgba(0, 206, 209, 0.5);
}

.floating-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 18px;
    font-weight: 500;
}

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

/* ===========================
   Clients Slider Section
   =========================== */
.clients-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #f4fbfc 0%, #ffffff 100%);
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    box-shadow: inset 0 1px 0 rgba(0, 206, 209, 0.05);
}

.clients-slider {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    animation: scroll 30s linear infinite;
    gap: 60px;
}

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

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    min-width: 150px;
    opacity: 0.6;
    transition: var(--transition);
}

.client-logo:hover {
    opacity: 1;
    transform: translateY(-5px);
}

.logo-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.client-logo:hover .logo-placeholder {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.client-logo img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(0.5);
    transition: var(--transition);
}

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

.client-logo span {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
}

.clients-text {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: var(--text-secondary);
    letter-spacing: 2px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

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

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.3;
}

/* Detailed Services */
.detailed-services {
    margin-top: 60px;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

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

.service-card {
    background: linear-gradient(145deg, var(--dark-card) 0%, var(--dark-section-3) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(0, 206, 209, 0.25);
}

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

.service-icon-large {
    width: 80px;
    height: 80px;
    background: rgba(0, 206, 209, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
}

.service-icon-large i {
    font-size: 36px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

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

.service-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    color: var(--text-secondary);
    font-size: 15px;
    transition: var(--transition);
}

.service-list li:hover {
    color: var(--text-primary);
    padding-left: 5px;
}

.service-list i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: #ffffff;
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 206, 209, 0.3);
}

.btn-secondary:hover::before {
    width: 100%;
}

/* ===========================
   Case Studies Section
   =========================== */
.case-studies {
    padding: 100px 0;
    background: linear-gradient(180deg, #f4fafc 0%, #ffffff 100%);
    position: relative;
}

.case-studies::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.case-studies::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0.3;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-header.center {
    max-width: 800px;
    margin: 0 auto 70px;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 12px;
}

.section-label::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-header h2 {
    font-size: 48px;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.case-studies-slider {
    position: relative;
    overflow: visible;
    padding: 0;
    margin-top: 30px;
}

.case-studies-track {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    overflow: visible;
}



.case-study-card {
    min-width: 0;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 12px 35px rgba(0, 206, 209, 0.25);
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.3) 0%, rgba(32, 178, 170, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 1;
}

.case-study-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 50px rgba(0, 206, 209, 0.3);
}

.case-study-card:hover::before {
    opacity: 1;
}

.case-study-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

.case-study-card:hover img {
    transform: scale(1.1);
}

.case-study-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(6, 18, 36, 0.88) 0%, rgba(6, 18, 36, 0.62) 55%, rgba(6, 18, 36, 0.32) 100%);
    border-top: 2px solid rgba(0, 206, 209, 0.28);
    color: #f5fbff;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.45);
}

.case-study-content h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #e8fbff;
}

.case-study-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.82);
}

.slider-btn {
    display: none;
}

/* ===========================
   Why Choose Us Section
   =========================== */
.why-us {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.5;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.why-us-image img {
    border-radius: 20px;
    width: 100%;
    height: 600px;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 206, 209, 0.18);
    border: 3px solid var(--border-color);
    transition: var(--transition);
}

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

.image-overlay {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    gap: 15px;
    z-index: 2;
}

.overlay-stat {
    flex: 1;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.95) 0%, rgba(32, 178, 170, 0.95) 100%);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.35);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.overlay-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 206, 209, 0.5);
}

.overlay-stat i {
    font-size: 28px;
    color: #ffffff;
}

.overlay-stat span {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
}

.why-us-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 206, 209, 0.15) 0%, rgba(32, 178, 170, 0.1) 100%);
    border-radius: 50%;
    border: 2px dashed var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 206, 209, 0.2);
}

.feature-icon i {
    font-size: 28px;
    color: var(--primary-color);
}

.feature-content h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.feature-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================
   Team Section
   =========================== */

.team-section {
    position: relative;
    overflow: hidden;
    padding: 100px 0;
    background: linear-gradient(180deg, #edf6f7 0%, #f7fbfd 100%);
}

.team-section::before,
.team-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.45;
    pointer-events: none;
}

.team-section::before {
    width: 340px;
    height: 340px;
    top: -80px;
    left: 6%;
    background: radial-gradient(circle, rgba(0, 206, 209, 0.18) 0%, rgba(0, 206, 209, 0) 65%);
}

.team-section::after {
    width: 320px;
    height: 320px;
    bottom: -60px;
    right: 8%;
    background: radial-gradient(circle, rgba(32, 178, 170, 0.16) 0%, rgba(32, 178, 170, 0) 65%);
}

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


.team-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 6px;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    max-height: 680px;
    width: 100%;
    background: rgb(240, 238, 231);
    border: 3px solid rgba(0, 206, 209, 0.18);
    box-shadow: 0 12px 30px rgba(0, 206, 209, 0.18);
}

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

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

.team-card h3,
.team-card p,
.team-overlay,
.team-role {
    display: none;
}

/* ===========================
   Working Procedure Section
   =========================== */
.working-procedure {
    padding: 100px 0;
    background: linear-gradient(180deg, #f5fbfd 0%, #ffffff 100%);
    position: relative;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.working-procedure::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(0, 206, 209, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.procedure-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.procedure-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, var(--primary-color) 100%);
    z-index: 0;
    opacity: 0.3;
    border-radius: 2px;
}

.procedure-step {
    background: linear-gradient(145deg, #ffffff 0%, #f6fafb 100%);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.15);
}

.procedure-step:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 12px 35px rgba(0, 206, 209, 0.25);
    background: linear-gradient(145deg, #f6fafb 0%, #eef7f9 100%);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
    color: #ffffff;
    z-index: 1;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.4);
    border: 3px solid rgba(0, 206, 209, 0.15);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 206, 209, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px auto 20px;
    position: relative;
    animation: iconPulse 2s ease-in-out infinite;
}

.step-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.procedure-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.procedure-step p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===========================
   FAQ Section
   =========================== */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
    position: relative;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.4;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.faq-left {
    position: relative;
}

.faq-left img {
    border-radius: 20px;
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.faq-cta {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--gradient-primary);
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    max-width: 320px;
    box-shadow: 0 10px 30px rgba(0, 206, 209, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}


.faq-cta-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-cta-icon i {
    font-size: 28px;
    color: #ffffff;
}

.faq-cta-content {
    display: flex;
    gap: 15px;
    align-items: center;
}

.faq-cta-content > i {
    font-size: 24px;
    color: #ffffff;
}

.faq-cta-content h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 5px;
}

.faq-cta-content p {
    font-size: 13px;
    color: #ffffff;
}

.faq-right h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.faq-intro {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

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

.faq-item {
    background: linear-gradient(135deg, var(--dark-card) 0%, var(--dark-section-3) 100%);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(0, 206, 209, 0.3);
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.1);
}

.faq-question {
    width: 100%;
    padding: 28px 35px;
    background: transparent;
    color: var(--text-primary);
    text-align: left;
    font-size: 17px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
    cursor: pointer;
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===========================
   Contact Section
   =========================== */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f4fbfc 0%, #ffffff 100%);
    position: relative;
    border-top: 2px solid var(--border-color);
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 206, 209, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(32, 178, 170, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: center;
}

.contact-item i {
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 22px;
    flex-shrink: 0;
    box-shadow: 0 5px 20px rgba(0, 206, 209, 0.3);
}

.contact-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item p {
    font-size: 14px;
    color: var(--text-secondary);
}

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

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(0, 206, 209, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 18px;
    transition: var(--transition);
}

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

.contact-form {
    background: linear-gradient(145deg, #ffffff 0%, #f8fbfc 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: 0 12px 40px rgba(0, 206, 209, 0.18);
    position: relative;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: #ffffff;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: #0f1b2a;
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300CED1' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 45px;
    cursor: pointer;
}

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

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}

.form-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    display: none;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: rgba(67, 233, 123, 0.1);
    border: 2px solid #43e97b;
    color: #43e97b;
    display: block;
}

.form-message.error {
    background: rgba(245, 87, 108, 0.1);
    border: 2px solid #f5576c;
    color: #f5576c;
    display: block;
}

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

.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.btn-primary.loading {
    position: relative;
}

.btn-primary.loading::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border: 2px solid #ffffff;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: translateY(-50%) rotate(360deg); }
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: #f0f5f7;
    padding: 80px 0 40px;
    border-top: 2px solid var(--border-color);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--primary-color) 50%, transparent 100%);
    opacity: 0.5;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.footer-col p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li {
    font-size: 14px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-col ul li:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col ul li i {
    color: var(--primary-color);
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 206, 209, 0.15);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ===========================
   Scroll to Top Button
   =========================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 55px;
    height: 55px;
    background: var(--gradient-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 5px 25px rgba(0, 206, 209, 0.4);
    cursor: pointer;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    animation: bounceIn 0.5s ease;
}

.scroll-to-top:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 206, 209, 0.5);
}

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

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: calc(100% + 12px);
        left: 0;
        right: 0;
        padding: 18px;
        background: #ffffff !important;
        border: 1px solid rgba(0, 206, 209, 0.2);
        border-radius: 14px;
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
        z-index: 999;
        transform: translate3d(0, 0, 0);
    }

    .nav-menu.active {
        display: flex !important;
        flex-direction: column;
        gap: 12px;
    }

    .nav-menu li a {
        width: 100%;
        display: block;
        padding: 10px 12px;
        color: var(--text-primary) !important;
        border-radius: 10px;
    }

    .nav-menu li a:hover {
        background: rgba(0, 206, 209, 0.08) !important;
        color: var(--primary-color) !important;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-main-img {
        max-width: 100%;
        height: 400px;
    }

    .floating-card {
        right: 20px;
        bottom: 20px;
        padding: 25px 35px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .procedure-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .procedure-timeline::before {
        display: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 38px;
        letter-spacing: -0.5px;
    }

    .hero-text > p {
        font-size: 17px;
        max-width: 100%;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .procedure-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .why-us-content h2,
    .contact-info h2,
    .faq-right h2 {
        font-size: 36px;
    }

    .section-header {
        margin-bottom: 50px;
    }

    .case-studies-slider {
        padding: 0 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .call-info {
        display: none;
    }

    .intro-card {
        padding: 30px;
    }

    .intro-card h2 {
        font-size: 28px;
    }

    .service-card {
        padding: 25px;
    }

    .contact-form {
        padding: 25px;
    }
}
