/* -------------------------------------------------------------------------- */
/*                                  VARIABLES                                 */
/* -------------------------------------------------------------------------- */
:root {
    /* Colors */
    --primary-color: #4338ca;
    /* Indigo 700 */
    --primary-light: #6366f1;
    /* Indigo 500 */
    --primary-dark: #312e81;
    /* Indigo 900 */
    --accent-color: #fca5a5;
    /* Soft Red/Pink for subtle highlights if needed */

    --text-main: #111827;
    /* Gray 900 */
    --text-muted: #6b7280;
    /* Gray 500 */
    --text-light: #f9fafb;
    /* Gray 50 */

    --bg-body: #ffffff;
    --bg-light: #f3f4f6;
    /* Gray 100 */
    --bg-card: #ffffff;

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --border-radius: 12px;
    --transition: all 0.3s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* -------------------------------------------------------------------------- */
/*                               RESET & BASE                                 */
/* -------------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.text-accent {
    color: var(--primary-light);
}

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

.mt-2 {
    margin-top: 2rem;
}

.text-white {
    color: white !important;
}

.text-white p {
    color: rgba(255, 255, 255, 0.8);
}

/* -------------------------------------------------------------------------- */
/*                               COMPONENTS                                   */
/* -------------------------------------------------------------------------- */

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: white;
}

.btn-white {
    background-color: white;
    color: var(--primary-color);
}

.btn-white:hover {
    background-color: #f0f0f0;
}

/* Cards */
.card {
    background: var(--bg-card);
    border-radius: var(--border-radius);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(99, 102, 241, 0.2);
    /* Subtle colored border on hover */
}

/* -------------------------------------------------------------------------- */
/*                                NAVIGATION                                  */
/* -------------------------------------------------------------------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: var(--header-height);
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-main);
}

.logo span {
    color: var(--primary-light);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn):hover {
    color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* -------------------------------------------------------------------------- */
/*                                   HERO                                     */
/* -------------------------------------------------------------------------- */
.hero {
    position: relative;
    padding: 8rem 0 6rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0f0529;
    /* Deep indigo/black bg */
    overflow: hidden;
    color: white;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.glow-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatShape 10s infinite alternate ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #4f46e5 0%, rgba(79, 70, 229, 0) 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #ec4899 0%, rgba(236, 72, 153, 0) 70%);
    bottom: -50px;
    right: -50px;
    animation-delay: 2s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #8b5cf6 0%, rgba(139, 92, 246, 0) 70%);
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #c7d2fe;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
}

.text-gradient {
    background: linear-gradient(135deg, #818cf8 0%, #c084fc 50%, #f472b6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    /* Helps with gradient rendering */
}

.hero-subtext {
    font-size: 1.35rem;
    margin: 0 auto 3rem;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Hero Button Variants */
.btn-glow {
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.btn-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Animations */
@keyframes floatShape {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(20px, 40px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

/* Responsive adjustments for Hero */
@media (max-width: 768px) {
    .hero {
        padding-top: 6rem;
    }

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

/* -------------------------------------------------------------------------- */
/*                                 SECTIONS                                   */
/* -------------------------------------------------------------------------- */
.section {
    padding: 5rem 0;
}

.section-light {
    background-color: var(--bg-light);
}

.section-accent {
    background-color: var(--primary-color);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

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

.section-header p {
    font-size: 1.125rem;
}

/* -------------------------------------------------------------------------- */
/*                                 SERVICES                                   */
/* -------------------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
    text-align: left;
    height: 100%;
}

.icon-box {
    width: 48px;
    height: 48px;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

/* -------------------------------------------------------------------------- */
/*                                   WORK SLIDER                              */
/* -------------------------------------------------------------------------- */
.slider-container {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0 3rem;
    /* Bottom padding for shadow/scroll space */
}

.slider-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 2rem;
    padding-bottom: 2rem;
    /* Hide scrollbar visual if consistent */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Firefox */
}

.slider-track::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.slider-item {
    flex: 0 0 350px;
    /* Fixed width cards for slider */
    scroll-snap-align: center;
}

.work-card {
    padding: 0;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.work-image-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.work-card:hover .work-image-img {
    transform: scale(1.05);
}

.work-content {
    padding: 1.5rem;
    background: white;
    flex-grow: 1;
    /* Ensure content fills height if variable */
}

.work-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

/* Responsive Slider */
@media (max-width: 768px) {
    .slider-item {
        flex: 0 0 85vw;
        /* Wider cards on mobile */
    }
}

/* -------------------------------------------------------------------------- */
/*                                  PROCESS                                   */
/* -------------------------------------------------------------------------- */
.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
    flex-wrap: wrap;
    gap: 2rem;
}

/* Connecting line (Desktop only shortcut) */
.process-timeline::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e5e7eb;
    z-index: 0;
    display: none;
    /* Hidden on mobile details */
}

@media (min-width: 768px) {
    .process-timeline::before {
        display: block;
    }
}

.process-item {
    position: relative;
    width: 100%;
    /* Mobile first */
    flex: 1;
    z-index: 1;
    text-align: center;
    min-width: 140px;
}

.process-number {
    width: 70px;
    height: 70px;
    background: white;
    border: 2px solid var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-sm);
}

.process-item h4 {
    margin-bottom: 0.5rem;
}

/* -------------------------------------------------------------------------- */
/*                                  PRICING                                   */
/* -------------------------------------------------------------------------- */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: center;
    /* Center horizontally for height diff */
}

.pricing-card {
    text-align: center;
    position: relative;
}

.pricing-card.popular {
    transform: scale(1.05);
    /* Slight size bump */
    border: 2px solid var(--primary-color);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 1.5rem 0;
    color: var(--text-main);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 400;
}

.features-list {
    margin: 2rem 0;
    text-align: left;
}

.features-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

/* -------------------------------------------------------------------------- */
/*                                TESTIMONIALS                                */
/* -------------------------------------------------------------------------- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.author {
    border-top: 1px solid #f3f4f6;
    padding-top: 1rem;
}

.author strong {
    display: block;
}

.author span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* -------------------------------------------------------------------------- */
/*                                  CONTACT                                   */
/* -------------------------------------------------------------------------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr 1fr;
        align-items: start;
    }
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background: white;
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    color: var(--text-main);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* -------------------------------------------------------------------------- */
/*                                CONTACT PAGE                                */
/* -------------------------------------------------------------------------- */

.page-header {
    background: var(--bg-light);
    padding: 6rem 0 3rem;
}

.contact-layout-extended {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .contact-layout-extended {
        grid-template-columns: 350px 1fr;
    }
}

.contact-info-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #e5e7eb;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    align-items: flex-start;
}

.icon-circle {
    width: 40px;
    height: 40px;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle svg {
    width: 20px;
    height: 20px;
}

.info-item h5 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.info-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    color: var(--text-muted);
}

.social-links-dark {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links-dark a {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 600;
}

.social-links-dark a:hover {
    background: var(--primary-color);
    color: white;
}

/* Clean Form Styles */
.contact-form-clean {
    background: white;
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border: 1px solid #f3f4f6;
}

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

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.input-clean {
    width: 100%;
    padding: 0.875rem 1rem;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: var(--transition);
    color: var(--text-main);
}

.input-clean:focus {
    outline: none;
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.btn-block {
    width: 100%;
    text-align: center;
}

/* Update Index Contact Section to be cleaner */
.section-accent {
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%);
}

.contact-info-clean h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-form-glass {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* -------------------------------------------------------------------------- */
/*                                  FOOTER                                    */
/* -------------------------------------------------------------------------- */
footer {
    padding: 3rem 0;
    background: #0f172a;
    color: #9ca3af;
    font-size: 0.9rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-col .logo {
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

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

/* -------------------------------------------------------------------------- */
/*                                RESPONSIVE                                  */
/* -------------------------------------------------------------------------- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

    /* Simple hiding for invalid toggle without JS */

    /* Show mobile menu logic usually requires JS, 
       but for pure CSS we can sometimes do checkbox hack 
       or just keep it hidden/stacked. 
       Given "No JS" constraint, we'll stack them or keep simple scrolling. 
       Let's display them in a scrollable row or wrap for simplicity 
       since no hamburger interaction is allowed without Checkbox Hack. 
       Using Checkbox Hack below for functional mobile menu without JS. 
    */
}

/* PURE CSS MOBILE MENU (Checkbox Hack Optional - or just stack them) 
   Requested "No JS", so sticking to reliable layout. 
   Making nav links scrollable horizontally on mobile is a common no-js pattern.
*/

@media (max-width: 768px) {
    .nav-links {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        background: white;
        padding: 1rem;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
        justify-content: space-around;
        order: 10;
        height: auto;
    }

    .nav-links a {
        font-size: 0.75rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .btn-sm {
        display: none;
        /* Hide CTA in bottom bar to save space */
    }

    body {
        padding-bottom: 60px;
        /* Space for bottom nav */
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
    }

    .process-timeline::before {
        display: none;
    }
}

/* -------------------------------------------------------------------------- */
/*                            NEW CONTACT SECTION                             */
/* -------------------------------------------------------------------------- */
.contact-form-modern {
    padding: 2rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    /* very subtle dark glass or just transparent */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group-modern {
    position: relative;
    margin-bottom: 2rem;
}

.form-group-modern input,
.form-group-modern textarea,
.form-group-modern select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.75rem 0;
    color: white;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group-modern select {
    /* For select dropdown arrow centering/style */
    appearance: none;
    color: white;
    /* Warning: options might be white on white in some browsers, fixed below */
}

.form-group-modern select option {
    color: black;
    /* Reset details for options */
}

.form-group-modern input:focus,
.form-group-modern textarea:focus,
.form-group-modern select:focus {
    border-color: white;
}

.form-group-modern label {
    position: absolute;
    top: 0.75rem;
    left: 0;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all 0.2s ease;
}

/* Floating Label Logic */
.form-group-modern input:focus~label,
.form-group-modern input:not(:placeholder-shown)~label,
.form-group-modern textarea:focus~label,
.form-group-modern textarea:not(:placeholder-shown)~label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 1);
}

/* Handles Select with static label or simulated floating */
.form-group-modern label.static-label {
    top: -1.2rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* -------------------------------------------------------------------------- */
/*                            TESTIMONIAL LEFT                                */
/* -------------------------------------------------------------------------- */
.testimonial-slider-left {
    margin: 3rem 0;
    max-width: 400px;
}

.testimonial-slide {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.stars {
    color: #ffd700;
    margin-bottom: 0.5rem;
}

.t-text {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.t-author img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.contact-details-mini p {
    margin-bottom: 0.25rem;
    opacity: 0.8;
}