/* ========================================
   FRESH & BRIGHT - REDESIGNED STYLESHEET
   ======================================== */

   @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }
   
   :root {
       --primary-color: #C5F04D;
       --primary-dark: #b0f040;
       --dark-bg: #11111f;
       --darker-bg: #090910;
       --light-bg: #f5f7f9;
       --text-dark: #1e1e24;
       --text-light: #5a5a66;
       --border-color: #eaeaea;
       --white: #ffffff;
       --font-family: 'Plus Jakarta Sans', sans-serif;
       --radius-lg: 24px;
       --radius-md: 16px;
       --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.05);
       --shadow-hover: 0 20px 50px rgba(0, 0, 0, 0.1);
   }
   
   html {
       scroll-behavior: smooth;
   }
   
   body {
       font-family: var(--font-family);
       line-height: 1.6;
       color: var(--text-dark);
       background-color: var(--white);
       -webkit-font-smoothing: antialiased;
   }
   
   /* Typography */
   h1, h2, h3, h4 {
       font-weight: 700;
       line-height: 1.1;
       margin-bottom: 1rem;
       color: var(--dark-bg);
       letter-spacing: -0.03em;
   }
   
   p {
       margin-bottom: 1.25rem;
       color: var(--text-light);
       font-size: 1.1rem;
   }
   
   a {
       color: var(--dark-bg);
       text-decoration: none;
       transition: all 0.3s ease;
   }
   
   /* Container */
   .container {
       max-width: 1280px;
       margin: 0 auto;
       padding: 0 2rem;
   }
   
   .section-header {
       margin-bottom: 4rem;
       max-width: 600px;
   }
   .section-header.center {
       margin: 0 auto 4rem auto;
       text-align: center;
   }
   .section-header h2 { font-size: 3rem; }
   .section-intro { font-size: 1.2rem; color: var(--text-light); }
   
   /* Buttons */
   .btn {
       display: inline-flex;
       align-items: center;
       justify-content: center;
       padding: 1rem 2rem;
       border-radius: 50px;
       font-weight: 600;
       transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
       font-size: 1rem;
   }
   
   .btn-primary {
       background-color: var(--primary-color);
       color: var(--dark-bg);
   }
   
   .btn-primary:hover {
       background-color: var(--primary-dark);
       transform: translateY(-3px);
       box-shadow: 0 10px 20px rgba(197, 240, 77, 0.3);
   }
   
   .btn-outline {
       background-color: transparent;
       color: var(--white);
       border: 2px solid rgba(255,255,255,0.2);
   }
   
   .btn-outline:hover {
       border-color: var(--white);
       background-color: rgba(255,255,255,0.05);
   }
   
   .btn-secondary {
       background-color: var(--light-bg);
       color: var(--dark-bg);
   }
   
   .btn-secondary:hover {
       background-color: var(--primary-color);
   }
   
   /* ========== HERO MODERN ========== */
   .hero-modern {
       background-color: var(--dark-bg);
       padding: 8rem 0 6rem 0;
       min-height: 90vh;
       display: flex;
       align-items: center;
       overflow: hidden;
   }
   
   .hero-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 4rem;
       align-items: center;
   }
   
   .hero-text-content {
       color: var(--white);
       z-index: 2;
   }
   
   .badge {
       display: inline-block;
       padding: 0.5rem 1rem;
       background: rgba(197, 240, 77, 0.1);
       color: var(--primary-color);
       border-radius: 50px;
       font-weight: 600;
       font-size: 0.9rem;
       margin-bottom: 1.5rem;
       text-transform: uppercase;
       letter-spacing: 1px;
   }
   
   .hero-modern h1 {
       font-size: 4.5rem;
       color: var(--white);
       margin-bottom: 1.5rem;
   }
   
   .hero-modern p {
       font-size: 1.25rem;
       color: rgba(255,255,255,0.7);
       margin-bottom: 2.5rem;
       max-width: 90%;
   }
   
   .hero-buttons {
       display: flex;
       gap: 1rem;
   }
   
   .hero-media {
       position: relative;
   }
   
   .video-wrapper {
       border-radius: var(--radius-lg);
       overflow: hidden;
       height: 600px;
       box-shadow: 0 30px 60px rgba(0,0,0,0.5);
       position: relative;
   }
   
   .video-wrapper video {
       width: 100%;
       height: 100%;
       object-fit: cover;
       opacity: 0.8;
   }
   
   .floating-stats {
       position: absolute;
       bottom: -30px;
       left: -40px;
       background: var(--white);
       padding: 2rem 3rem;
       border-radius: var(--radius-md);
       box-shadow: var(--shadow-hover);
       display: flex;
       align-items: center;
       gap: 2rem;
       z-index: 10;
   }
   
   .stat-item h3 {
       font-size: 2.2rem;
       color: var(--dark-bg);
       margin-bottom: 0;
   }
   
   .stat-item p {
       margin: 0;
       font-size: 0.9rem;
       color: var(--text-light);
       font-weight: 600;
       text-transform: uppercase;
   }
   
   .stat-divider {
       width: 2px;
       height: 40px;
       background: var(--border-color);
   }
   
   /* ========== SERVICES ELEVATED ========== */
   .services {
       padding: 8rem 0;
       background-color: var(--light-bg);
   }
   
   .services-masonry {
       display: grid;
       grid-template-columns: repeat(2, 1fr);
       gap: 2rem;
   }
   
   .modern-card {
       background: var(--white);
       padding: 3rem;
       border-radius: var(--radius-lg);
       box-shadow: var(--shadow-soft);
       transition: all 0.4s ease;
       border: 1px solid rgba(0,0,0,0.03);
   }
   
   .modern-card:hover {
       transform: translateY(-10px);
       box-shadow: var(--shadow-hover);
   }
   
   .modern-card:nth-child(2) {
       transform: translateY(40px);
   }
   .modern-card:nth-child(2):hover {
       transform: translateY(30px);
   }
   .modern-card:nth-child(4) {
       transform: translateY(40px);
   }
   
   .service-icon-wrapper {
       width: 60px;
       height: 60px;
       background: var(--light-bg);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-size: 1.2rem;
       font-weight: 800;
       color: var(--dark-bg);
       margin-bottom: 2rem;
   }
   
   .highlight-card {
       background: var(--dark-bg);
       color: var(--white);
   }
   
   .highlight-card h3 { color: var(--white); }
   .highlight-card p { color: rgba(255,255,255,0.7); }
   .highlight-card .service-icon-wrapper {
       background: var(--primary-color);
       color: var(--dark-bg);
   }
   
   /* ========== WHY US SIDE-BY-SIDE ========== */
   .why-us {
       padding: 8rem 0;
       background: var(--white);
   }
   
   .why-us-grid {
       display: grid;
       grid-template-columns: 1fr 1fr;
       gap: 6rem;
       align-items: center;
   }
   
   .why-us-text h2 {
       font-size: 3rem;
   }
   
   .why-us-features-vertical {
       display: flex;
       flex-direction: column;
       gap: 2rem;
   }
   
   .feature-row {
       display: flex;
       gap: 1.5rem;
       background: var(--light-bg);
       padding: 2rem;
       border-radius: var(--radius-md);
       transition: background 0.3s ease;
   }
   
   .feature-row:hover {
       background: var(--primary-color);
   }
   
   .feature-icon {
       font-size: 2rem;
   }
   
   .feature-text h4 {
       margin-bottom: 0.5rem;
       font-size: 1.3rem;
   }
   
   .feature-text p {
       margin: 0;
       font-size: 1rem;
   }
   
   /* ========== PROCESS TIMELINE ========== */
   .process {
       padding: 8rem 0;
       background: var(--dark-bg);
       color: var(--white);
   }
   
   .process .section-header h2 { color: var(--white); }
   .process .section-intro { color: rgba(255,255,255,0.6); }
   
   .process-timeline {
       display: grid;
       grid-template-columns: repeat(4, 1fr);
       gap: 2rem;
       position: relative;
   }
   
   .process-timeline::before {
       content: '';
       position: absolute;
       top: 30px;
       left: 0;
       width: 100%;
       height: 2px;
       background: rgba(255,255,255,0.1);
       z-index: 1;
   }
   
   .process-step-modern {
       position: relative;
       z-index: 2;
   }
   
   .step-circle {
       width: 60px;
       height: 60px;
       background: var(--primary-color);
       color: var(--dark-bg);
       border-radius: 50%;
       display: flex;
       align-items: center;
       justify-content: center;
       font-weight: 700;
       font-size: 1.2rem;
       margin-bottom: 2rem;
       box-shadow: 0 0 0 10px var(--dark-bg);
   }
   
   .step-content h3 {
       color: var(--white);
       font-size: 1.4rem;
   }
   
   .step-content p {
       color: rgba(255,255,255,0.6);
       font-size: 1rem;
   }
   
   /* ========== SECTORS TAGS ========== */
   .sectors {
       padding: 8rem 0;
   }
   
   .sectors-tags {
       display: flex;
       flex-wrap: wrap;
       justify-content: center;
       gap: 1rem;
       max-width: 900px;
       margin: 0 auto;
   }
   
   .sector-tag {
       padding: 1rem 2rem;
       background: var(--white);
       border: 2px solid var(--border-color);
       border-radius: 50px;
       font-size: 1.1rem;
       font-weight: 600;
       color: var(--text-dark);
       transition: all 0.3s ease;
       cursor: pointer;
   }
   
   .sector-tag:hover {
       background: var(--primary-color);
       border-color: var(--primary-color);
       transform: translateY(-3px);
       box-shadow: 0 10px 20px rgba(197, 240, 77, 0.2);
   }
   
   /* ========== CTA SECTION ========== */
   .cta-final {
       margin: 0 2rem 4rem 2rem;
       background: var(--primary-color);
       border-radius: var(--radius-lg);
       padding: 5rem;
   }
   
   .cta-flex {
       display: flex;
       justify-content: space-between;
       align-items: center;
   }
   
   .cta-text h2 {
       font-size: 3.5rem;
       margin-bottom: 0.5rem;
   }
   
   .cta-text p {
       color: var(--dark-bg);
       font-size: 1.2rem;
       margin: 0;
   }
   
   .btn-large {
       padding: 1.5rem 3rem;
       font-size: 1.2rem;
       background: var(--dark-bg);
       color: var(--white);
   }
   
   .btn-large:hover {
       background: var(--darker-bg);
       transform: scale(1.05);
   }
   
   /* ========== FOOTER ========== */
   .footer {
       background-color: var(--darker-bg);
       color: var(--white);
       padding: 5rem 0 2rem 0;
   }
   
   .footer-content {
       display: grid;
       grid-template-columns: 2fr 1fr 1fr;
       gap: 4rem;
       margin-bottom: 4rem;
   }
   
   .footer-logo h2 {
       color: var(--primary-color);
       margin-bottom: 1rem;
   }
   
   .footer-section h4 {
       color: var(--white);
       margin-bottom: 1.5rem;
   }
   
   .footer-section p, .footer-section a {
       color: rgba(255,255,255,0.6);
   }
   
   .footer-section a:hover {
       color: var(--primary-color);
   }
   
   .footer-section ul {
       list-style: none;
   }
   .footer-section ul li {
       margin-bottom: 0.8rem;
   }
   
   .footer-bottom {
       text-align: center;
       padding-top: 2rem;
       border-top: 1px solid rgba(255,255,255,0.1);
       color: rgba(255,255,255,0.4);
   }
   
   /* Responsive adjustments */
   @media (max-width: 1024px) {
       .hero-modern h1 { font-size: 3.5rem; }
       .hero-grid { gap: 2rem; }
       .video-wrapper { height: 450px; }
       .floating-stats { left: 0; bottom: -20px; padding: 1.5rem; width: 100%; justify-content: space-around; gap: 1rem;}
       .stat-divider { display: none; }
   }
   
   @media (max-width: 768px) {
       .hero-grid, .why-us-grid, .services-masonry, .cta-flex, .footer-content {
           grid-template-columns: 1fr;
       }
       
       .hero-modern { padding-top: 4rem; padding-bottom: 6rem;}
       .video-wrapper { display: none; } /* Hide video on mobile for cleaner hero */
       .floating-stats { position: relative; bottom: 0; margin-top: 3rem; flex-wrap: wrap;}
       
       .modern-card:nth-child(2), .modern-card:nth-child(4) { transform: none !important; }
       
       .process-timeline { grid-template-columns: 1fr; }
       .process-timeline::before {
           width: 2px;
           height: 100%;
           left: 30px;
           top: 0;
       }
       .process-step-modern { display: flex; gap: 2rem; }
       .step-circle { flex-shrink: 0; }
       
       .cta-final { padding: 3rem; flex-direction: column; text-align: center; gap: 2rem; margin: 0 1rem 2rem 1rem;}
   }

   /* ========================================
   SUBPAGE SPECIFIC STYLES
   ======================================== */

/* Page Headers */
.page-header-modern {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 8rem 2rem 6rem 2rem;
    text-align: center;
}
.page-header-modern h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}
.page-header-modern p {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 500;
}

/* About Page Elements */
.about-text-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-text-content h2 {
    font-size: 2.5rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}
.value-card-modern {
    background: rgba(255,255,255,0.05);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}
.value-card-modern:hover {
    background: rgba(197, 240, 77, 0.1);
    border-color: var(--primary-color);
}
.value-card-modern h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.value-card-modern p {
    color: rgba(255,255,255,0.7);
    margin: 0;
}
.inclusion-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}
.inclusion-block {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}
.inclusion-block:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}
.inclusion-block h3 {
    font-size: 1.4rem;
}
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.stat-card {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--light-bg);
    border-radius: var(--radius-lg);
}
.stat-card h3 {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    -webkit-text-stroke: 1px var(--dark-bg); /* Gives it a bold punchy look */
}
.stat-card p {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* Testimonials Page Elements */
.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}
.testimonial-card-modern {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}
.testimonial-card-modern:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}
.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.initials-modern {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: var(--dark-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}
.testimonial-info h4 {
    margin: 0;
    font-size: 1.2rem;
}
.testimonial-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}
.stars-modern {
    color: #f59e0b;
    letter-spacing: 2px;
    font-size: 1.1rem;
}
.testimonial-text {
    font-style: italic;
    font-size: 1.05rem;
    margin-top: 0.5rem;
}
.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

/* Contact Page Elements */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
}
.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.modern-input {
    width: 100%;
    padding: 1.2rem 1.5rem;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: var(--light-bg);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.modern-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(197, 240, 77, 0.2);
}
.contact-info-card {
    background: var(--dark-bg);
    color: var(--white);
    padding: 4rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}
.contact-info-card h2 { color: var(--white); }
.contact-info-card p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.contact-info-card a { color: var(--primary-color); text-decoration: none; transition: color 0.3s ease; }
.contact-info-card a:hover { color: var(--white); }
.contact-info-card hr { border: 0; border-top: 1px solid rgba(255,255,255,0.1); margin: 3rem 0; }
.faq-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

/* Subpage Mobile Adjustments */
@media (max-width: 768px) {
    .page-header-modern { padding: 6rem 1rem 4rem 1rem; }
    .page-header-modern h1 { font-size: 2.5rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
    .contact-info-card { padding: 2rem; }
    .stat-card h3 { font-size: 2.5rem; }
    .about-text-content h2 { font-size: 2rem; }
}

/* SVG Icon Styling */
.feature-icon svg,
.service-icon-wrapper svg {
    stroke: var(--dark-bg);
}

.feature-row:hover .feature-icon svg {
    stroke: var(--dark-bg);
}

.highlight-card .service-icon-wrapper.dark svg {
    stroke: var(--dark-bg);
}