/* Custom Color Variables */
:root {
    --cyan-50: #ecfeff;
    --cyan-100: #cffafe;
    --cyan-200: #a5f3fc;
    --cyan-300: #67e8f9;
    --cyan-400: #22d3ee;
    --cyan-500: #06b6d4;
    --cyan-600: #0891b2;
    --cyan-700: #0e7490;
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --blue-50: #eff6ff;
    --blue-200: #bfdbfe;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --blue-700: #1d4ed8;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Bootstrap Primary Color Override */
.btn-primary {
    background-color: var(--cyan-600);
    border-color: var(--cyan-600);
}

.btn-primary:hover {
    background-color: var(--cyan-700);
    border-color: var(--cyan-700);
}

.btn-outline-primary {
    color: var(--gray-700);
    border-color: var(--gray-200);
}

.btn-outline-primary:hover {
    background-color: var(--cyan-600);
    border-color: var(--cyan-600);
    color: white;
}

.text-primary {
    color: var(--cyan-600) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom right, var(--cyan-50), white, var(--blue-50));
    position: relative;
    overflow: hidden;
}

.hero-section::before,
.hero-section::after {
    content: '';
    position: absolute;
    width: 288px;
    height: 288px;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(64px);
    mix-blend-mode: multiply;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero-section::before {
    top: 80px;
    right: 80px;
    background-color: var(--cyan-200);
}

.hero-section::after {
    bottom: 80px;
    left: 80px;
    background-color: var(--blue-200);
    animation-delay: 2s;
}

.logo-img {
    height: 125px;
}

.navbar-nav .nav-link {
    color: var(--gray-700);
    font-weight: 500;
    transition: color 0.3s;
}

.navbar-nav .nav-link:hover {
    color: var(--cyan-600);
}

.btn-call-now {
    border-radius: 9999px;
    padding: 0.625rem 1.5rem;
}

.badge-custom {
    display: inline-flex;
    align-items: center;
    background-color: var(--cyan-100);
    color: var(--cyan-700);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--gray-900);
    letter-spacing: -0.025em;
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 32rem;
}

.btn-hero {
    border-radius: 9999px;
    padding: 1rem 2rem;
    transition: all 0.3s;
}

.btn-hero:hover {
    transform: scale(1.05);
}

.btn-hero-outline {
    border-radius: 9999px;
    padding: 1rem 2rem;
    border-width: 2px;
    transition: all 0.3s;
}

.btn-hero-outline:hover {
    border-color: var(--cyan-600);
    color: var(--cyan-600);
}

.stat-number {
    font-size: 1.875rem;
    color: var(--cyan-600);
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--gray-600);
}

.hero-image-wrapper {
    position: relative;
}

.hero-image {
    border-radius: 1.5rem;
}

.order-status-card {
    bottom: -24px;
    left: -24px;
    max-width: 20rem;
    border-radius: 1rem;
}

.status-icon {
    width: 48px;
    height: 48px;
    background-color: var(--teal-100);
}

/* Features Section */
.features-section {
    background: linear-gradient(to bottom right, var(--cyan-50), var(--teal-50), white);
    position: relative;
    overflow: hidden;
}

.features-section::before,
.features-section::after {
    content: '';
    position: absolute;
    width: 288px;
    height: 288px;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(64px);
    mix-blend-mode: multiply;
    animation: blob 7s infinite;
}

.features-section::before {
    top: 80px;
    left: 40px;
    background-color: var(--cyan-300);
}

.features-section::after {
    top: 160px;
    right: 40px;
    background-color: var(--teal-300);
    animation-delay: 2s;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--gray-900);
    letter-spacing: -0.025em;
}

@media (min-width: 992px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--gray-600);
    max-width: 42rem;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 2px solid var(--cyan-200);
    transition: all 0.3s;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--cyan-400);
    box-shadow: 0 25px 50px -12px rgba(6, 182, 212, 0.2);
    transform: translateY(-8px);
}

.bg-teal-100 {
    background-color: var(--teal-100);
}

.bg-cyan-100 {
    background-color: var(--cyan-100);
}

.text-teal {
    color: var(--teal-600);
}

.text-cyan {
    color: var(--cyan-600);
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(6deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.feature-description {
    color: var(--gray-600);
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, var(--gray-50), white, var(--gray-50));
}

.service-card {
    background-color: white;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid var(--gray-100);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(64px);
    transition: transform 0.7s;
}

.service-card:hover::before {
    transform: scale(1.5);
}

.service-card:nth-child(1)::before,
.service-card:nth-child(3)::before {
    background: linear-gradient(to bottom right, var(--cyan-500), var(--teal-500));
}

.service-card:nth-child(2)::before,
.service-card:nth-child(4)::before {
    background: linear-gradient(to bottom right, var(--teal-500), var(--cyan-600));
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.bg-gradient-cyan {
    background: linear-gradient(to bottom right, var(--cyan-500), var(--teal-500));
}

.bg-gradient-teal {
    background: linear-gradient(to bottom right, var(--teal-500), var(--cyan-600));
}

.bg-gradient-cyan-dark {
    background: linear-gradient(to bottom right, var(--cyan-600), var(--teal-600));
}

.bg-gradient-teal-dark {
    background: linear-gradient(to bottom right, var(--teal-600), var(--cyan-700));
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.service-description {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    color: var(--gray-700);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.compliance-card {
    background: linear-gradient(to bottom right, var(--gray-900), var(--gray-800));
    border-radius: 1.5rem;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.compliance-card::before,
.compliance-card::after {
    content: '';
    position: absolute;
    width: 256px;
    height: 256px;
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(64px);
}

.compliance-card::before {
    top: 0;
    right: 0;
    background-color: var(--cyan-500);
}

.compliance-card::after {
    bottom: 0;
    left: 0;
    background-color: var(--blue-500);
}

.compliance-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    font-size: 1.5rem;
}

.text-cyan-light {
    color: var(--cyan-400);
}

/* How It Works Section */
.how-it-works-section {
    background-color: white;
}

.step-card {
    background-color: white;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: all 0.5s;
    height: 100%;
}

.step-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.step-image-wrapper {
    height: 192px;
    overflow: hidden;
    position: relative;
}

.step-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.step-card:hover .step-image {
    transform: scale(1.1);
}

.step-image-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 48px;
    height: 48px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan-600);
    font-weight: 600;
    z-index: 1;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.step-icon {
    width: 48px;
    height: 48px;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(6, 182, 212, 0.3);
    transition: transform 0.3s;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.step-card:hover .step-icon {
    transform: scale(1.1);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    padding: 0 1.5rem;
}

.step-description {
    color: var(--gray-600);
    padding: 0 1.5rem 1.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(to bottom right, var(--cyan-600), var(--blue-700));
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 384px;
    height: 384px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    filter: blur(64px);
}

.cta-section::before {
    top: 0;
    right: 0;
}

.cta-section::after {
    bottom: 0;
    left: 0;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 600;
}

@media (min-width: 992px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--cyan-50);
    max-width: 32rem;
}

.cta-stat-icon {
    font-size: 1.875rem;
}

/* Footer */
.footer-section {
    background-color: var(--gray-900);
    color: var(--gray-300);
}

.footer-logo {
    height: 85px;
/*    filter: brightness(0) invert(1);*/
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--cyan-400);
}

.footer-contact a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--cyan-400);
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-300);
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--cyan-600);
    color: white;
}

/* Animations */
@keyframes blob {
    0% {
        transform: translate(0px, 0px) scale(1);
    }
    33% {
        transform: translate(30px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
    100% {
        transform: translate(0px, 0px) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.5;
    }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 1.875rem;
    }
    
    .cta-title {
        font-size: 1.875rem;
    }
    
    .order-status-card {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Utility Classes */
.text-muted {
    color: var(--gray-400) !important;
}

.border-secondary {
    border-color: var(--gray-800) !important;
}

/* ===== CONTACT SECTION HEADING ===== */
.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 60px;
}

/* ===== CONTACT INFO CARDS ===== */
.contact-card {
    background: #f5f7fb;
    border-radius: 14px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #00b3b3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
}

.contact-card h5 {
    margin-bottom: 5px;
    font-weight: 700;
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #063970, #0a4f9c);
    color: #fff;
}

.cta-title {
    font-size: 42px;
    font-weight: 800;
}

.cta-subtitle {
    max-width: 600px;
    font-size: 18px;
    opacity: 0.9;
}

/* CTA buttons */
.cta-section .btn {
    min-width: 220px;
    border-radius: 50px;
}

/* Bottom stats icons */
.cta-stat-icon {
    font-size: 32px;
}

/* Cyan text */
.text-cyan-light {
    color: #7dd6ff;
}
.cta-section {
    background: #0a4f9c;
    color: #222;
}
.cta-section h2 {
    background: #0a4f9c;
    color: #ffff;
}