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

:root {
    --primary-color: #123B6A;
    --secondary-color: #0B4F4F;
    --accent-color: #2E8B8B;
    --accent-light: #3FA9A9;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-lighter: #999;
    --bg-light: #f8f9fa;
    --bg-lighter: #fafbfc;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(18, 59, 106, 0.08);
    --shadow-md: 0 8px 30px rgba(18, 59, 106, 0.12);
    --shadow-lg: 0 15px 50px rgba(18, 59, 106, 0.18);
    --shadow-xl: 0 25px 70px rgba(18, 59, 106, 0.25);
    --gradient-primary: linear-gradient(135deg, #123B6A 0%, #1a5490 100%);
    --gradient-secondary: linear-gradient(135deg, #0B4F4F 0%, #0d6b6b 100%);
    --gradient-accent: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-light: linear-gradient(135deg, rgba(18, 59, 106, 0.05) 0%, rgba(11, 79, 79, 0.05) 100%);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--white);
}

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

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid rgba(18, 59, 106, 0.12);
}

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

.logo img {
    height: 50px;
    width: auto;
    display: block;
    transition: all 0.4s ease;
    filter: brightness(0) invert(1);
}

.navbar.scrolled .logo img {
    filter: none;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-link {
    color: var(--text-dark);
    text-shadow: none;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.5);
}

.navbar.scrolled .nav-link::after {
    background: var(--gradient-accent);
    box-shadow: none;
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: all 0.4s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar.scrolled .mobile-menu-toggle span {
    background: var(--primary-color);
    box-shadow: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
    overflow: visible;
    background: var(--primary-color);
    box-shadow: none;
}

.btn svg {
    transition: transform 0.4s ease;
    width: 20px;
    height: 20px;
}

.btn:hover svg {
    transform: translateX(5px);
}

.nav-menu .btn-primary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.navbar.scrolled .nav-menu .btn-primary {
    background: var(--primary-color);
    border: none;
    box-shadow: 0 4px 20px rgba(18, 59, 106, 0.3);
}

.nav-menu .btn-primary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.navbar.scrolled .nav-menu .btn-primary:hover {
    background: #0d4a6f;
    color: var(--white);
    box-shadow: 0 8px 30px rgba(18, 59, 106, 0.4);
    transform: translateY(-3px);
}

.btn-primary {
    background: var(--accent-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(18, 59, 106, 0.3);
}

.btn-primary:hover {
    background: #0d4a6f;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(18, 59, 106, 0.4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.4);
}

.btn-large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: 
        linear-gradient(135deg, rgba(13, 47, 84, 0.75) 0%, rgba(18, 59, 106, 0.85) 40%, rgba(11, 79, 79, 0.88) 100%),
        url('/img/homepage-banner.jpg') center center / cover no-repeat;
    padding-top: 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(63, 169, 169, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(26, 84, 144, 0.2) 0%, transparent 50%);
    animation: heroPattern 20s ease-in-out infinite;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="60" height="60" patternUnits="userSpaceOnUse"><circle cx="30" cy="30" r="1.5" fill="rgba(255,255,255,0.08)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 80%, rgba(63, 169, 169, 0.08) 0%, transparent 50%);
    animation: overlayShift 15s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes overlayShift {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(-20px); }
}

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

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
    font-weight: 400;
    letter-spacing: -0.3px;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.4s backwards;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.12);
    padding: 0.85rem 1.6rem;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-badge svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s backwards;
}

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

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-tag {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: var(--gradient-light);
    border: 2px solid rgba(18, 59, 106, 0.15);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.section-tag:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(18, 59, 106, 0.15);
}

.section-header::after {
    content: '';
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-accent);
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(18, 59, 106, 0.3);
}

.section-header h2 {
    font-size: 3.2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -1.5px;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-light);
    font-weight: 400;
    max-width: 670px;
    margin: 0 auto;
}

.services {
    padding: 4rem 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(18, 59, 106, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(11, 79, 79, 0.06) 0%, transparent 50%),
        var(--bg-lighter);
    position: relative;
    overflow: hidden;
}

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

.services::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(63, 169, 169, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(18, 59, 106, 0.08);
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-light);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 0;
}

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

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

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(18, 59, 106, 0.2);
}

.service-card.featured {
    background: linear-gradient(135deg, rgba(11, 79, 79, 0.04) 0%, rgba(18, 59, 106, 0.04) 100%);
    border: 3px solid var(--secondary-color);
    box-shadow: var(--shadow-lg);
}

.service-card.featured:hover {
    box-shadow: 0 20px 60px rgba(11, 79, 79, 0.25);
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 5rem;
    font-weight: 900;
    color: rgba(18, 59, 106, 0.05);
    line-height: 1;
    z-index: 0;
    transition: all 0.6s ease;
}

.service-card:hover .service-number {
    color: rgba(18, 59, 106, 0.08);
    transform: scale(1.1) rotate(-5deg);
}

.service-icon-wrapper {
    padding: 2.5rem 2.5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.service-content {
    padding: 0 2.5rem 2.5rem;
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-badge {
    position: absolute;
    top: 2rem;
    right: 10px;
    background: var(--gradient-secondary);
    color: var(--white);
    padding: 0.7rem 1.4rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(11, 79, 79, 0.35);
    z-index: 3;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.featured-badge svg {
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(18, 59, 106, 0.25);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-accent);
    border-radius: 28px;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.6s ease;
}

.service-icon::after {
    content: '';
    position: absolute;
    inset: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.6s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(8deg);
    box-shadow: 0 15px 45px rgba(18, 59, 106, 0.35);
}

.service-card:hover .service-icon::before {
    opacity: 0.7;
}

.service-card:hover .service-icon::after {
    inset: 6px;
    background: rgba(255, 255, 255, 0.15);
}

.service-icon svg {
    color: var(--white);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
    transition: transform 0.6s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
}

.service-content h3 {
    font-size: 1.7rem;
    color: var(--primary-color);
    margin-bottom: 1.3rem;
    font-weight: 800;
    letter-spacing: -0.7px;
    transition: all 0.4s ease;
    line-height: 1.3;
}

.service-card:hover .service-content h3 {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateX(5px);
}

.service-content > p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 1.03rem;
}

.service-features {
    list-style: none;
    display: grid;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.7rem 0 0.7rem 2.2rem;
    color: var(--text-dark);
    position: relative;
    font-size: 0.99rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    box-shadow: 0 2px 8px rgba(18, 59, 106, 0.2);
}

.service-features li::after {
    content: '✓';
    position: absolute;
    left: 6.5px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-weight: bold;
    font-size: 0.9rem;
}

.service-features li:hover {
    padding-left: 2.5rem;
    color: var(--primary-color);
}

.service-features li:hover::before {
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 4px 12px rgba(18, 59, 106, 0.3);
}

.service-footer {
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(18, 59, 106, 0.08);
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-link:hover {
    gap: 0.8rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-link:hover::after {
    width: 100%;
}

.service-card:hover .service-link {
    transform: translateX(5px);
}

.about {
    padding: 4rem 0;
    background: 
        radial-gradient(circle at 90% 20%, rgba(11, 79, 79, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 10% 80%, rgba(18, 59, 106, 0.02) 0%, transparent 50%),
        var(--white);
    position: relative;
    overflow: hidden;
}

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

.about::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(11, 79, 79, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 5rem;
    align-items: start;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.about-text-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(18, 59, 106, 0.08);
    position: relative;
    overflow: hidden;
}

.about-text-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
}

.about-content .lead {
    font-size: 1.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 1.8rem;
    line-height: 1.9;
    font-size: 1.08rem;
}

.about-features {
    display: grid;
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--gradient-light);
    border-radius: 12px;
    border: 1px solid rgba(18, 59, 106, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
    border-color: rgba(18, 59, 106, 0.2);
}

.about-feature-item svg {
    color: var(--secondary-color);
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    padding: 4px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(11, 79, 79, 0.2);
}

.about-feature-item span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1.05rem;
}

.about-stats-wrapper {
    position: sticky;
    top: 100px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2.5rem;
    background: var(--white);
    border-radius: 24px;
    border: 2px solid rgba(18, 59, 106, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.stat::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-light);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.stat:hover::before {
    opacity: 1;
}

.stat:hover::after {
    transform: scaleX(1);
}

.stat:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-xl);
    border-color: rgba(18, 59, 106, 0.25);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(18, 59, 106, 0.2);
}

.stat-icon::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.5s ease;
}

.stat:hover .stat-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 35px rgba(18, 59, 106, 0.3);
}

.stat:hover .stat-icon::before {
    opacity: 0.6;
}

.stat-icon svg {
    color: var(--white);
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.stat h3 {
    font-size: 3.5rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    font-weight: 900;
    position: relative;
    z-index: 1;
    letter-spacing: -2px;
}

.stat p {
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}


.why-us {
    padding: 7rem 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(11, 79, 79, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(18, 59, 106, 0.04) 0%, transparent 50%),
        var(--bg-lighter);
    position: relative;
    overflow: hidden;
}

.why-us::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.2;
}

.features-carousel {
    position: relative;
    max-width: 100%;
    margin: 3rem auto 0;
    padding: 0 60px;
}

.features-carousel .feature-item {
    padding: 2rem;
    margin: 0 15px;
}

.features-carousel .slick-list {
    margin: 0 -15px;
}

@media (max-width: 768px) {
    .features-carousel {
        padding: 0 20px;
    }
    
    .features-carousel .feature-item {
        padding: 1.5rem 0;
        margin: 0 10px;
    }
    
    .features-carousel .slick-list {
        margin: 0 -10px;
    }
}

.features-carousel .slick-prev,
.features-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid rgba(18, 59, 106, 0.15);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.features-carousel .slick-prev:hover,
.features-carousel .slick-next:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(18, 59, 106, 0.3);
}

.features-carousel .slick-prev svg,
.features-carousel .slick-next svg {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.features-carousel .slick-prev:hover svg,
.features-carousel .slick-next:hover svg {
    color: var(--white);
}

.features-carousel .slick-prev {
    left: 0;
}

.features-carousel .slick-next {
    right: 0;
}

.features-carousel .slick-prev::before,
.features-carousel .slick-next::before {
    content: '';
}

.features-carousel .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
    padding: 0;
    list-style: none;
    bottom:  -50px;
}

.features-carousel .slick-dots li {
    margin: 0;
}

.features-carousel .slick-dots li button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(18, 59, 106, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    font-size: 0;
}

.features-carousel .slick-dots li.slick-active button {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

.features-carousel .slick-dots li button:hover {
    background: var(--primary-color);
    opacity: 0.7;
}

.features-carousel .slick-dots li button::before {
    content: '';
}

.feature-item {
    text-align: center;
    padding: 2.8rem 2rem;
    background: var(--white);
    border-radius: 24px;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(18, 59, 106, 0.1);
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .feature-item {
        padding: 2rem 1.5rem;
    }
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(18, 59, 106, 0.2);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(18, 59, 106, 0.25);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: -5px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.6s ease;
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.6s ease;
}

.feature-item:hover .feature-icon {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 15px 45px rgba(18, 59, 106, 0.35);
}

.feature-item:hover .feature-icon::before {
    opacity: 0.7;
}

.feature-item:hover .feature-icon::after {
    inset: 8px;
    background: rgba(255, 255, 255, 0.2);
}

.feature-icon svg {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
    transition: transform 0.6s ease;
}

.feature-item:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-item h3 {
    font-size: 1.45rem;
    color: var(--primary-color);
    margin-bottom: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    transition: all 0.4s ease;
    line-height: 1.3;
}

.feature-item:hover h3 {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-3px);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.9;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.testimonials {
    padding: 4rem 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(11, 79, 79, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(18, 59, 106, 0.03) 0%, transparent 50%),
        var(--white);
    position: relative;
    overflow: hidden;
}

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

.testimonials::after {
    content: '';
    position: absolute;
    top: 30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(18, 59, 106, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 22s ease-in-out infinite;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 0;
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(18, 59, 106, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    bottom: 20px;
    right: 25px;
    font-size: 10rem;
    color: rgba(18, 59, 106, 0.03);
    font-family: Georgia, serif;
    line-height: 1;
    z-index: 0;
    font-weight: 700;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.testimonial-card:hover::after {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(18, 59, 106, 0.2);
}

.testimonial-card.featured-testimonial {
    border: 3px solid var(--secondary-color);
    background: linear-gradient(135deg, rgba(11, 79, 79, 0.02) 0%, rgba(18, 59, 106, 0.02) 100%);
}

.testimonial-card.featured-testimonial:hover {
    box-shadow: 0 20px 60px rgba(11, 79, 79, 0.2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 2.5rem 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(18, 59, 106, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.testimonial-avatar::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-accent);
    border-radius: 50%;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.5s ease;
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(18, 59, 106, 0.3);
}

.testimonial-card:hover .testimonial-avatar::before {
    opacity: 0.6;
}

.testimonial-avatar svg {
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.testimonial-info {
    flex: 1;
}

.testimonial-info strong {
    display: block;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.3rem;
    letter-spacing: -0.3px;
}

.testimonial-info span {
    color: var(--text-lighter);
    font-size: 0.9rem;
    font-weight: 500;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    letter-spacing: 1px;
    filter: drop-shadow(0 2px 6px rgba(255, 193, 7, 0.4));
    flex-shrink: 0;
}

.testimonial-card > p {
    color: var(--text-dark);
    font-style: italic;
    padding: 0 2.5rem 2rem;
    line-height: 1.9;
    font-size: 1.08rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.testimonial-badge {
    padding: 0.6rem 1.2rem;
    background: var(--gradient-light);
    border-top: 1px solid rgba(18, 59, 106, 0.08);
    color: var(--secondary-color);
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.testimonial-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px rgba(11, 79, 79, 0.5);
}

.contact {
    padding: 4rem 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(11, 79, 79, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(18, 59, 106, 0.05) 0%, transparent 50%),
        var(--bg-lighter);
    position: relative;
    overflow: hidden;
}

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

.contact::after {
    content: '';
    position: absolute;
    bottom: 20%;
    right: -8%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(11, 79, 79, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 23s ease-in-out infinite;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.contact-info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 2px solid rgba(18, 59, 106, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
}

.contact-info-card h3 {
    font-size: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.7px;
}

.contact-info-card .lead {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
    padding: 1.3rem;
    background: var(--gradient-light);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(18, 59, 106, 0.08);
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
    border-color: rgba(18, 59, 106, 0.15);
    background: var(--white);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-accent);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(18, 59, 106, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.contact-icon::before {
    content: '';
    position: absolute;
    inset: -3px;
    background: var(--gradient-accent);
    border-radius: 12px;
    opacity: 0;
    filter: blur(10px);
    transition: opacity 0.5s ease;
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(18, 59, 106, 0.3);
}

.contact-item:hover .contact-icon::before {
    opacity: 0.6;
}

.contact-icon svg {
    color: var(--white);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.2px;
}

.contact-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
    font-size: 0.98rem;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 3.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-xl);
    border: 2px solid rgba(18, 59, 106, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-accent);
}

.contact-form h3 {
    font-size: 2.2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    font-weight: 800;
    letter-spacing: -0.8px;
}

.form-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
    letter-spacing: -0.1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem 1.4rem;
    border: 2px solid rgba(18, 59, 106, 0.15);
    border-radius: 14px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--bg-lighter);
    color: var(--text-dark);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
    color: var(--text-lighter);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 6px 20px rgba(18, 59, 106, 0.12);
    transform: translateY(-2px);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg width="12" height="8" viewBox="0 0 12 8" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 1L6 6L11 1" stroke="%23123B6A" stroke-width="2" stroke-linecap="round"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    padding-right: 3rem;
}

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

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

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 0.8rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 12px;
    background: var(--bg-lighter);
    border: 2px solid rgba(18, 59, 106, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.checkbox-label:hover {
    background: var(--white);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(18, 59, 106, 0.1);
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-custom {
    width: 22px;
    height: 22px;
    border: 2px solid rgba(18, 59, 106, 0.3);
    border-radius: 6px;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2.5px 2.5px 0;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 2px 8px rgba(18, 59, 106, 0.3);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-label input[type="checkbox"]:checked ~ .checkbox-text {
    color: var(--primary-color);
    font-weight: 600;
}

.checkbox-text {
    color: var(--text-dark);
    font-size: 0.98rem;
    transition: all 0.3s ease;
}

.btn-full {
    width: 100%;
    margin-top: 1rem;
}

.form-message {
    display: none;
    padding: 1.2rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 500;
}

.form-message.success {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    color: #065f46;
}

.form-message.error {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 2px solid rgba(239, 68, 68, 0.3);
    color: #991b1b;
}

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

/* Contact Form Mobile Responsive Styles */
@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .contact-form h3 {
        font-size: 1.75rem;
    }
    
    .form-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .checkbox-label {
        padding: 0.9rem 1rem;
    }
    
    .checkbox-text {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-form-wrapper {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .contact-form h3 {
        font-size: 1.5rem;
        letter-spacing: -0.5px;
    }
    
    .form-subtitle {
        font-size: 0.9rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
    }
    
    .btn-full {
        padding: 1.1rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Policy Modal Styles */
.policy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.policy-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.modal-content {
    position: relative;
    background: var(--white);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
}

.policy-modal.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(18, 59, 106, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-color);
    transform: rotate(90deg);
}

.modal-close svg {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.modal-close:hover svg {
    color: var(--white);
}

.modal-header {
    padding: 40px 40px 20px;
    border-bottom: 2px solid rgba(18, 59, 106, 0.1);
}

.modal-header h2 {
    margin: 0;
    font-size: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.modal-body {
    padding: 30px 40px 40px;
    overflow-y: auto;
    flex: 1;
}

.modal-body::-webkit-scrollbar {
    width: 8px;
}

.modal-body::-webkit-scrollbar-track {
    background: var(--bg-lighter);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.modal-body::-webkit-scrollbar-thumb:hover {
    background: #0d4a6f;
}

.modal-body h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.modal-body ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-dark);
}

.modal-body li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.modal-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.modal-body a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.modal-body a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%;
        max-height: 90vh;
        border-radius: 16px;
    }
    
    .modal-header {
        padding: 30px 20px 15px;
    }
    
    .modal-header h2 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
    }
    
    .modal-body h3 {
        font-size: 1.2rem;
    }
    
    .modal-body p {
        font-size: 0.95rem;
    }
}

.footer {
    background: #2E8B8B;
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

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

.footer-cta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding: 6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
}

.footer-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.footer-cta h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin: 0;
    letter-spacing: -1.5px;
}

.footer-cta-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.footer-cta-right p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-footer {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-footer:hover {
    background: var(--bg-lighter);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-footer svg {
    transition: transform 0.4s ease;
}

.btn-footer:hover svg {
    transform: translateX(5px);
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--white);
    transition: width 0.3s ease;
}

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

.footer-nav-link svg {
    transition: transform 0.3s ease;
}

.footer-nav-link:hover svg {
    transform: translate(3px, -3px);
}

.footer-main {
    padding: 5rem 0 3rem;
}

.footer-logo-large {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo-large h1 {
    font-size: 7rem;
    font-weight: 300;
    letter-spacing: -3px;
    color: var(--white);
    margin: 0;
    line-height: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

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

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

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
    border-radius: 8px;
}

.footer-social a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

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

.footer-copyright p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    margin: 0;
}

/* Footer Mobile Responsive Styles */
@media (max-width: 1024px) {
    .footer-cta h2 {
        font-size: 2.5rem;
    }
    
    .footer-logo-large h1 {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .footer-cta {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 4rem 0;
        text-align: center;
    }
    
    .footer-cta h2 {
        font-size: 2rem;
        letter-spacing: -1px;
    }
    
    .footer-cta-right {
        align-items: center;
    }
    
    .footer-cta-right p {
        font-size: 1rem;
    }
    
    .footer-nav {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 2.5rem 1rem;
    }
    
    .footer-nav-link {
        font-size: 0.85rem;
    }
    
    .footer-main {
        padding: 3rem 0 2rem;
    }
    
    .footer-logo-large h1 {
        font-size: 3.5rem;
        letter-spacing: -2px;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-cta {
        padding: 3rem 0;
    }
    
    .footer-cta h2 {
        font-size: 1.75rem;
    }
    
    .footer-tag {
        font-size: 0.75rem;
        letter-spacing: 1.5px;
    }
    
    .btn-footer {
        padding: 1rem 2rem;
        font-size: 0.95rem;
    }
    
    .footer-nav {
        gap: 1rem;
        padding: 2rem 1rem;
    }
    
    .footer-logo-large h1 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }
    
    .footer-social {
        gap: 1rem;
    }
    
    .footer-social a {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

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

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

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

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}
