/* ========================================
   COMPLETE UI/UX REDESIGN - PREMIUM MODERN STYLE
   ======================================== */

/* Modern Premium Color Palette */
:root {
    --primary-deep: #1a1f3a;
    --primary-dark: #0f172a;
    --accent-blue: #3b82f6;
    --accent-purple: #8b5cf6;
    --accent-cyan: #06b6d4;
    --accent-gradient: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-light: #94a3b8;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);
}

[data-theme="dark"] {
    --primary-deep: #0a0e1a;
    --primary-dark: #000000;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-light: #94a3b8;
    --bg-light: #0f172a;
    --bg-white: #1e293b;
    --border-light: #334155;
}

/* Typography Enhancements */
body {
    font-family: 'Inter', 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Urbanist', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 { font-size: 64px; line-height: 1.1; font-weight: 800; }
h2 { font-size: 48px; line-height: 1.2; font-weight: 700; }
h3 { font-size: 32px; line-height: 1.3; }
h4 { font-size: 24px; line-height: 1.4; }
h5 { font-size: 20px; line-height: 1.5; }
h6 { 
    font-size: 14px; 
    font-weight: 600; 
    text-transform: uppercase; 
    letter-spacing: 0.1em; 
    color: var(--accent-blue);
}

p { color: var(--text-secondary); line-height: 1.8; }

/* Modern Button Redesign */
.all_button {
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 12px;
    background: var(--accent-gradient);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.all_button::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;
}

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

.all_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
    color: #ffffff;
}

.all_button i {
    margin-left: 8px;
    transition: transform 0.3s;
}

.all_button:hover i {
    transform: translateX(4px);
}

/* Header Redesign */
.header {
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.6);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .header {
    background: rgba(15, 23, 42, 0.8);
    border-bottom: 1px solid rgba(51, 65, 85, 0.6);
}

.navbar-brand h2 {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.navbar-nav .nav-item a {
    font-weight: 500;
    color: var(--text-primary) !important;
    position: relative;
    padding: 8px 0;
}

.navbar-nav .nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: width 0.3s ease;
}

.navbar-nav .nav-item a:hover::after,
.navbar-nav .active > a::after {
    width: 100%;
}

.header .contact_us {
    background: var(--accent-gradient);
    border-radius: 10px;
    padding: 12px 24px;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.header .contact_us:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Banner Redesign */
.banner-con {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(30, 41, 59, 0.9)), 
                url(../images/pexels-karola-g-7875953.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.banner-con::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
}

.banner-con .banner_content h5 {
    color: var(--accent-cyan);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.banner-con .banner_content h1 {
    font-size: 72px;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 24px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.banner-con .banner_content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.banner-con .banner_content .get_started {
    background: var(--accent-gradient);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.banner-con .banner_content .learn_more_btn {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.banner-con .banner_content .learn_more_btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* About Section Redesign */
.about-con {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

[data-theme="dark"] .about-con {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.about-con .about_content h6 {
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.about-con .about_content h2 {
    margin-bottom: 24px;
}

.about-con .about_wrapper .box {
    background: var(--accent-gradient);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.3);
}

/* Benefit Section Redesign */
.benefit-con {
    padding: 120px 0;
    background: var(--bg-light);
}

.benefit-con .benefit_wrapper ul li {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.5);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

[data-theme="dark"] .benefit-con .benefit_wrapper ul li {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(51, 65, 85, 0.5);
}

.benefit-con .benefit_wrapper ul li:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.5);
}

.benefit-con .benefit_wrapper ul li .icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 16px;
}

.benefit-con .benefit_wrapper ul li:hover .icon {
    background: var(--accent-gradient);
    border-color: transparent;
}

.benefit-con .benefit_wrapper ul li:hover .icon img {
    filter: brightness(0) invert(1);
}

/* Service Section Redesign */
.service-con {
    padding: 120px 0;
    background: #ffffff;
}

[data-theme="dark"] .service-con {
    background: var(--bg-white);
}

.service-con .service-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

[data-theme="dark"] .service-con .service-box {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--border-light);
}

.service-con .service-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.15);
    border-color: var(--accent-blue);
}

.service-con .service-box .icon {
    transition: all 0.3s ease;
}

.service-con .service-box:hover .icon {
    transform: scale(1.1) rotate(5deg);
}

.service-con .service-box .learn_more {
    color: var(--accent-blue);
    font-weight: 600;
}

.service-con .service-box .learn_more:hover {
    color: var(--accent-purple);
}

/* Choose Section Redesign */
.choose-con {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-deep) 100%);
    position: relative;
}

.choose-con::before {
    opacity: 0.3;
}

.choose-con .choose_content h6 {
    color: var(--accent-cyan);
}

.choose-con .choose_content h2 {
    color: #ffffff;
}

.choose-con .choose_content p {
    color: rgba(255, 255, 255, 0.8);
}

.choose-con .choose_wrapper ul li .value span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* FAQ Section Redesign */
.faq-con {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

[data-theme="dark"] .faq-con {
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.faq-con::before {
    background: var(--accent-gradient);
}

.faq-con .accordion-card .btn-link {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 2px solid var(--accent-blue);
    color: var(--accent-blue);
    border-radius: 12px;
    font-weight: 600;
}

[data-theme="dark"] .faq-con .accordion-card .btn-link {
    background: rgba(30, 41, 59, 0.9);
}

.faq-con .accordion-card .collapsed {
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid var(--border-light);
    color: var(--text-primary);
}

[data-theme="dark"] .faq-con .accordion-card .collapsed {
    background: rgba(30, 41, 59, 0.6);
}

.faq-con .accordion-card .btn-link:hover {
    transform: translateX(4px);
}

/* Testimonial Section Redesign */
.testimonial-con {
    padding: 120px 0;
    background: var(--bg-light);
}

.testimonial-con .testimonial-box {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
}

[data-theme="dark"] .testimonial-con .testimonial-box {
    background: rgba(30, 41, 59, 0.8);
}

.testimonial-con .testimonial-box ul li i {
    color: #fbbf24;
}

.testimonial-con .carousel-indicators .active figure {
    border: 3px solid var(--accent-blue);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

/* Footer Redesign */
.footer-con {
    background: linear-gradient(180deg, var(--primary-dark) 0%, #000000 100%);
}

.footer-con .middle_portion h4 {
    color: #ffffff;
    font-weight: 700;
}

.footer-con .middle_portion .links li a:hover {
    color: var(--accent-cyan);
}

.footer-con .middle_portion .contact i {
    color: var(--accent-blue);
}

.footer-con .middle_portion .contact li:hover a,
.footer-con .middle_portion .contact li:hover i {
    color: var(--accent-cyan);
}

.footer-con .middle_portion .social-icons a:hover i {
    background: var(--accent-gradient);
    transform: translateY(-4px);
}

/* Back to Top Button Redesign */
#button {
    background: var(--accent-gradient);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

#button:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(59, 130, 246, 0.5);
}

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

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

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

/* Scroll Animations */
[data-aos="fade-up"] {
    animation: fadeInUp 0.8s ease;
}

[data-aos="fade-down"] {
    animation: fadeInDown 0.8s ease;
}

[data-aos="zoom-in"] {
    animation: scaleIn 0.8s ease;
}

/* Responsive Enhancements */
@media (max-width: 1199px) {
    h1 { font-size: 56px; }
    h2 { font-size: 40px; }
    .banner-con .banner_content h1 { font-size: 56px; }
}

@media (max-width: 991px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    .banner-con .banner_content h1 { font-size: 48px; }
    .benefit-con .benefit_wrapper ul { flex-direction: column; }
    .benefit-con .benefit_wrapper ul li { margin-bottom: 24px; }
}

@media (max-width: 767px) {
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    .banner-con .banner_content h1 { font-size: 40px; }
    .banner-con { padding: 80px 0; }
    .about-con, .benefit-con, .service-con, .choose-con, .faq-con, .testimonial-con {
        padding: 80px 0;
    }
}

@media (max-width: 575px) {
    h1 { font-size: 32px; }
    h2 { font-size: 28px; }
    .banner-con .banner_content h1 { font-size: 32px; }
    .all_button { padding: 14px 24px; font-size: 14px; }
}
