/* ===== CSS RESET & BASE STYLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
    .container { padding: 0 2rem; }
}

@media (min-width: 1280px) {
    .container { padding: 0 2.5rem; }
}

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

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

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

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

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

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== TYPOGRAPHY ===== */
.gradient-text {
    background: linear-gradient(135deg, #005cb9 0%, #0066cc 50%, #0080ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #005cb9 0%, #0066cc 50%, #0080ff 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gradient-text:hover::after {
    transform: scaleX(1);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
}

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

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

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

@media (min-width: 768px) {
    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 1.25rem 2.5rem;
        font-size: 1.125rem;
    }
}

.btn-primary {
    background: linear-gradient(135deg, #005cb9 0%, #0066cc 50%, #0080ff 100%);
    color: white;
    box-shadow: 0 4px 14px 0 rgba(0, 92, 185, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px 0 rgba(0, 92, 185, 0.4);
    background: linear-gradient(135deg, #004494 0%, #0055aa 50%, #0066cc 100%);
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px 0 rgba(0, 92, 185, 0.3);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.1);
}

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

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(3px);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
        height: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
        height: 5rem;
    }
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: #005cb9;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px 0 rgba(0, 92, 185, 0.3);
}

.brand-icon span {
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

@media (min-width: 640px) {
    .brand-text {
        font-size: 1.75rem;
    }
}

.nav-menu {
    display: none;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #005cb9;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: #005cb9;
    transition: width 0.3s ease;
}

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

@media (min-width: 768px) {
    .nav-link {
        font-size: 1rem;
    }
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .mobile-menu-toggle {
        display: none;
    }
}

.mobile-menu-toggle span {
    width: 1.5rem;
    height: 2px;
    background: #374151;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 1rem 2rem;
}

@media (min-width: 768px) {
    .hero {
        padding: 8rem 1.5rem 3rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 10rem 2rem 4rem;
    }
}

.hero-background {
    position: absolute;
    inset: 0;
    background: #005cb9;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.1);
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    filter: blur(60px);
    animation: float 6s ease-in-out infinite;
}

.floating-1 {
    width: 12rem;
    height: 12rem;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-2 {
    width: 16rem;
    height: 16rem;
    bottom: 15%;
    right: 5%;
    animation-delay: 2s;
}

.floating-3 {
    width: 8rem;
    height: 8rem;
    top: 60%;
    left: 80%;
    animation-delay: 4s;
}

@media (min-width: 640px) {
    .floating-1 {
        width: 18rem;
        height: 18rem;
        top: 15%;
        left: 10%;
    }
    
    .floating-2 {
        width: 24rem;
        height: 24rem;
        bottom: 20%;
        right: 10%;
    }
    
    .floating-3 {
        width: 12rem;
        height: 12rem;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

@media (min-width: 640px) {
    .hero-badge {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        margin-bottom: 2.5rem;
    }
}

.status-dot {
    width: 0.5rem;
    height: 0.5rem;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 2rem;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 5.5rem;
    }
}

@media (min-width: 1280px) {
    .hero-title {
        font-size: 6.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 640px) {
    .hero-description {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 640px) {
    .hero-actions {
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
    }
}

/* ===== CERTIFICATIONS BANNER ===== */
.certifications {
    background: #005cb9;
    padding: 2rem 0;
    color: white;
}

@media (min-width: 640px) {
    .certifications {
        padding: 2.5rem 0;
    }
}

.certifications-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .certifications-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cert-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cert-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
}

.cert-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .cert-text h3 {
        font-size: 1.5rem;
    }
}

.cert-text p {
    font-size: 0.875rem;
    opacity: 0.9;
}

@media (min-width: 640px) {
    .cert-text p {
        font-size: 1rem;
    }
}

.cert-divider {
    width: 1px;
    height: 3rem;
    background: rgba(255, 255, 255, 0.3);
    display: none;
}

@media (min-width: 768px) {
    .cert-divider {
        display: block;
    }
}

.cert-stats {
    display: flex;
    gap: 2rem;
}

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

.cert-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
}

@media (min-width: 640px) {
    .cert-number {
        font-size: 2rem;
    }
}

.cert-label {
    font-size: 0.75rem;
    opacity: 0.9;
}

@media (min-width: 640px) {
    .cert-label {
        font-size: 0.875rem;
    }
}

/* ===== FEATURED SERVICE STYLING ===== */
.featured-service {
    position: relative;
    border: 2px solid #005cb9;
    background: rgba(0, 92, 185, 0.05);
}

.featured-service::before {
    background: #005cb9;
    transform: scaleX(1);
}

.service-badge {
    position: absolute;
    top: -0.0rem;
    right: 1rem;
    background: #005cb9;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 4px 14px 0 rgba(0, 92, 185, 0.3);
}

@media (min-width: 640px) {
    .service-badge {
        font-size: 0.875rem;
        padding: 0.375rem 1rem;
    }
}

/* ===== STATS SECTION ===== */
.stats {
    padding: 3rem 0;
    background: #f9fafb;
}

@media (min-width: 640px) {
    .stats {
        padding: 4rem 0;
    }
}

@media (min-width: 768px) {
    .stats {
        padding: 5rem 0;
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #005cb9;
    margin-bottom: 0.5rem;
}

@media (min-width: 640px) {
    .stat-number {
        font-size: 3rem;
    }
}

@media (min-width: 768px) {
    .stat-number {
        font-size: 3.5rem;
    }
}

@media (min-width: 1024px) {
    .stat-number {
        font-size: 4rem;
    }
}

.stat-label {
    color: #6b7280;
    font-weight: 500;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .stat-label {
        font-size: 1rem;
    }
}

/* ===== SECTION STYLES ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .section-header {
        margin-bottom: 4rem;
    }
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 5rem;
    }
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #e0f2fe;
    color: #005cb9;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-badge {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #000000;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .section-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-description {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .section-description {
        font-size: 1.25rem;
        max-width: 700px;
    }
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 4rem 0;
    background: white;
}

@media (min-width: 640px) {
    .services {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .services {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .services {
        padding: 8rem 0;
    }
}

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

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
    }
}

.service-card {
    background: white;
    border: 1px solid #f3f4f6;
    border-radius: 1.5rem;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

@media (min-width: 640px) {
    .service-card {
        padding: 2.5rem;
    }
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: #e5e7eb;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #005cb9;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 4rem;
    height: 4rem;
    background: #005cb9;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
}

.service-icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 1rem;
}

@media (min-width: 640px) {
    .service-title {
        font-size: 1.75rem;
    }
}

.service-description {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .service-description {
        font-size: 1rem;
    }
}

.service-features {
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .service-features li {
        font-size: 1rem;
    }
}

.service-features li::before {
    content: '';
    width: 1.25rem;
    height: 1.25rem;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
}

.service-features li::after {
    content: '✓';
    position: absolute;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    margin-left: -1.25rem;
    margin-top: -0.125rem;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: 4rem 0;
    background: #f9fafb;
}

@media (min-width: 640px) {
    .about {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .about {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .about {
        padding: 8rem 0;
    }
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (min-width: 1280px) {
    .about-grid {
        gap: 5rem;
    }
}

.about-content .section-badge {
    background: #fed7aa;
    color: #9a3412;
}

.about-text {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .about-text {
        font-size: 1.125rem;
        margin-bottom: 2.5rem;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

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

.value-icon {
    width: 3rem;
    height: 3rem;
    background: #005cb9;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: white;
}

.value-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    stroke-width: 2;
}

.value-label {
    font-weight: 600;
    color: #000000;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .value-label {
        font-size: 1rem;
    }
}

.about-highlight {
    position: relative;
}

.highlight-card {
    background: #005cb9;
    border-radius: 1.5rem;
    padding: 2rem;
    color: white;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
    .highlight-card {
        padding: 2.5rem;
    }
}

.highlight-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

@media (min-width: 640px) {
    .highlight-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

.highlight-list {
    list-style: none;
}

.highlight-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .highlight-list li {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}

.highlight-list li::before {
    content: '✓';
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.highlight-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.3;
}

.decoration-1 {
    width: 6rem;
    height: 6rem;
    background: #005cb9;
    top: -1.5rem;
    right: -1.5rem;
}

.decoration-2 {
    width: 8rem;
    height: 8rem;
    background: #004494;
    bottom: -2rem;
    left: -2rem;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 4rem 0;
    background: white;
}

@media (min-width: 640px) {
    .contact {
        padding: 5rem 0;
    }
}

@media (min-width: 768px) {
    .contact {
        padding: 6rem 0;
    }
}

@media (min-width: 1024px) {
    .contact {
        padding: 8rem 0;
    }
}

.contact .section-badge {
    background: #dcfce7;
    color: #065f46;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
        margin-bottom: 4rem;
    }
}

.contact-item {
    background: #f9fafb;
    border-radius: 1.5rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 4rem;
    height: 4rem;
    background: #005cb9;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.contact-icon svg {
    width: 2rem;
    height: 2rem;
    stroke-width: 2;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
}

.contact-value {
    color: #6b7280;
    font-size: 1rem;
}

@media (min-width: 640px) {
    .contact-value {
        font-size: 1.125rem;
    }
}

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

/* ===== FOOTER ===== */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1.5rem;
}

@media (min-width: 640px) {
    .footer {
        padding: 4rem 0 2rem;
    }
}

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

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 4rem;
    }
}

.footer-brand {
    grid-column: 1 / -1;
}

@media (min-width: 1024px) {
    .footer-brand {
        grid-column: 1;
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-description {
    color: #9ca3af;
    line-height: 1.7;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .footer-description {
        font-size: 1rem;
    }
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

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

@media (min-width: 640px) {
    .footer-links a {
        font-size: 1rem;
    }
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.875rem;
}

@media (min-width: 640px) {
    .footer-bottom p {
        font-size: 1rem;
    }
}

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

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

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

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #005cb9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #004494;
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .mobile-menu-toggle,
    .floating-element {
        display: none !important;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .gradient-text,
    .btn-primary {
        color: #005cb9 !important;
        background: none !important;
    }
}



/* ===== CONTACT SECTION ===== */
.contact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 1024px) {
    .contact-container {
        grid-template-columns: 1fr 1.5fr;
        gap: 4rem;
    }
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 92, 185, 0.1);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 92, 185, 0.2);
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #005cb9 0%, #0066cc 100%);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 1.5rem;
    height: 1.5rem;
    color: white;
}

.contact-details {
    flex: 1;
}

.contact-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
}

.contact-value {
    color: #6b7280;
    font-size: 0.95rem;
}

/* ===== CONTACT FORM ===== */
.contact-form-container {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 92, 185, 0.1);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.form-input,
.form-select,
.form-textarea {
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #005cb9;
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 92, 185, 0.1);
    transform: translateY(-1px);
}

.form-input:hover,
.form-select:hover,
.form-textarea:hover {
    border-color: #d1d5db;
    background: white;
}

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

.form-select {
    cursor: pointer;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%236b7280" stroke-width="2"><path d="M6 9l6 6 6-6"/></svg>');
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1rem;
    appearance: none;
    padding-right: 2.5rem;
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.25rem;
    display: none;
}

.form-error.show {
    display: block;
    animation: fadeInUp 0.3s ease;
}

/* ===== CHECKBOX STYLES ===== */
.checkbox-group {
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

.form-checkbox {
    display: none;
}

.checkbox-custom {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.375rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-custom::after {
    content: '';
    width: 0.5rem;
    height: 0.75rem;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg) scale(0);
    transition: transform 0.2s ease;
}

.form-checkbox:checked + .checkbox-custom {
    background: #005cb9;
    border-color: #005cb9;
}

.form-checkbox:checked + .checkbox-custom::after {
    transform: rotate(45deg) scale(1);
}

.checkbox-label:hover .checkbox-custom {
    border-color: #005cb9;
}

.privacy-link {
    color: #005cb9;
    text-decoration: none;
    font-weight: 500;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* ===== FORM SUBMIT BUTTON ===== */
.form-submit {
    margin-top: 1rem;
    width: 100%;
    position: relative;
}

.submit-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.loading-spinner {
    width: 1.25rem;
    height: 1.25rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== FORM VALIDATION STATES ===== */
.form-input.error,
.form-select.error,
.form-textarea.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.form-input.success,
.form-select.success,
.form-textarea.success {
    border-color: #10b981;
    background: #f0fdf4;
}

.form-input.error:focus,
.form-select.error:focus,
.form-textarea.error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.form-input.success:focus,
.form-select.success:focus,
.form-textarea.success:focus {
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .contact {
        padding: 4rem 0;
    }
    
    .contact-form-container {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-icon {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .contact-icon svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

/* ===== SUCCESS MESSAGE ===== */
.form-success {
    background: #f0fdf4;
    border: 2px solid #10b981;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    color: #065f46;
    display: none;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

.form-success h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #065f46;
}

.form-success p {
    color: #047857;
}

