/* ============================================
   DubaiRealtyNRI - Main Stylesheet
   Green & White Premium Design with 3D Effects & Animations
   ============================================ */

:root {
    --primary-color: #0F4C3A;        /* Deep forest green */
    --primary-dark: #083526;         /* Darker green */
    --secondary-color: #FFD966;      /* Soft gold for accents (optional, keep if needed) */
    --accent-green: #2E7D64;         /* Vibrant minty green */
    --bg-light: #FFFFFF;             /* Pure white background */
    --bg-dark: #0F4C3A;              /* Deep green for dark elements */
    --gradient: linear-gradient(135deg, #0F4C3A 0%, #2E7D64 100%);
    --gradient-dark: linear-gradient(135deg, #083526 0%, #0F4C3A 100%);
    --gradient-gold: linear-gradient(135deg, #FFD966 0%, #FFE4A0 50%, #FFD966 100%);
    --box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    --box-shadow-hover: 0 20px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Poppins', sans-serif;
    background-color: var(--bg-light);
    color: #1E2A32;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* ============================================
   Typography
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 4px 12px rgba(15,76,58,0.2);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(15,76,58,0.3);
    color: white;
}

.btn-outline-light {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-glow {
    background: var(--gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

.btn-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(46,125,100,0.4);
}

.btn-effect {
    position: absolute;
    top: -50%;
    left: -60%;
    width: 200%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: rotate(45deg);
    transition: 0.5s;
}

.btn-glow:hover .btn-effect {
    left: 100%;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #20b859;
    transform: translateY(-3px);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 8px;
    padding: 8px 15px;
    font-size: 14px;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

.btn-consultation {
    background: var(--gradient);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 15px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15,76,58,0.4);
    color: white;
}

.btn-submit {
    background: var(--gradient);
    color: white;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
    width: 100%;
    border: none;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(15,76,58,0.3);
}

.btn-search {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    border: none;
    padding: 12px;
    border-radius: 10px;
    width: 100%;
    transition: var(--transition);
}

.btn-search:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15,76,58,0.3);
    background: var(--accent-green);
}

/* ============================================
   Top Bar
   ============================================ */
.top-bar {
    background: var(--primary-dark);
    color: white;
    padding: 10px 0;
    font-size: 13px;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.top-bar .contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.top-bar .contact-info a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: var(--transition);
}

.top-bar .contact-info a:hover {
    color: #FFD966;
}

.top-bar .contact-info i {
    margin-right: 8px;
    color: #FFD966;
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: #FFD966;
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    background: white !important;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(15,76,58,0.1);
}

.navbar-brand {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-decoration: none;
}

.brand-name {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--primary-color);
}

.brand-highlight {
    color: var(--accent-green);
}

.brand-tagline {
    font-size: 9px;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 2px;
}

.navbar-nav .nav-link {
    color: #1E2A32;
    font-weight: 500;
    padding: 28px 18px;
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px 3px 0 0;
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::before {
    width: 60%;
}

/* Dropdown Menu */
.dropdown-menu {
    background: white;
    border: none;
    border-radius: 12px;
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 0;
}

.dropdown-item {
    color: #1E2A32;
    padding: 10px 24px;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: rgba(15,76,58,0.05);
    color: var(--primary-color);
    padding-left: 28px;
}

.dropdown-divider {
    border-top: 1px solid rgba(15,76,58,0.1);
}

/* ============================================
   Hero Section
   ============================================ */
.hero-section {
    background: var(--gradient);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    margin-bottom: 20px;
}

.badge-gold {
    background: #FFD966;
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
    animation: pulse-gold 2s infinite;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    color: white;
}

.hero-description {
    font-size: 18px;
    margin: 20px 0;
    opacity: 0.9;
    color: rgba(255,255,255,0.9);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.trust-badges span {
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.trust-badges i {
    color: #FFD966;
}

/* Lead Form Card */
.lead-form-card {
    background: white;
    border-radius: 20px;
    padding: 35px;
    color: #333;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.lead-form-card h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 24px;
}

/* ============================================
   Quick Search
   ============================================ */
.quick-search {
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.search-box {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.search-box h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 22px;
}

/* ============================================
   Section Styles
   ============================================ */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(15,76,58,0.1);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #4A5B6E;
}

.bg-light {
    background-color: #F8FAFC !important;
}

/* ============================================
   Benefit Cards
   ============================================ */
.benefit-card {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.benefit-card .icon {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.benefit-card .icon i {
    font-size: 35px;
    color: white;
}

.benefit-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.benefit-card p {
    color: #4A5B6E;
    font-size: 14px;
}

/* ============================================
   Property Cards
   ============================================ */
.property-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.property-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.property-status.ready {
    background: #2E7D64;
}

.property-status.offplan {
    background: #FFD966;
    color: var(--primary-dark);
}

.featured-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FFD966;
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.property-details {
    padding: 20px;
}

.property-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.location {
    color: #4A5B6E;
    font-size: 13px;
    margin-bottom: 10px;
}

.price {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.property-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #E2E8F0;
}

.property-features span {
    font-size: 13px;
    color: #4A5B6E;
}

.property-features i {
    margin-right: 5px;
    color: var(--primary-color);
}

.property-buttons {
    display: flex;
    gap: 10px;
}

/* ============================================
   Project Cards
   ============================================ */
.project-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    margin: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.project-image {
    position: relative;
    height: 200px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #FFD966;
    color: var(--primary-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.project-details {
    padding: 20px;
}

.project-details h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.developer, .location {
    color: #4A5B6E;
    font-size: 13px;
    margin-bottom: 8px;
}

.project-info {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    flex-wrap: wrap;
}

.project-info span {
    font-size: 13px;
    color: #4A5B6E;
}

.project-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

/* ============================================
   Area Cards
   ============================================ */
.area-card {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.area-card:hover {
    transform: translateY(-5px);
}

.area-image {
    position: relative;
    height: 200px;
}

.area-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.area-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15,76,58,0.9));
    color: white;
    padding: 15px;
}

.area-overlay h4 {
    margin: 0;
    font-size: 18px;
}

.area-overlay p {
    margin: 5px 0 0;
    font-size: 12px;
}

.area-card-link {
    text-decoration: none;
}

/* ============================================
   Testimonial Cards
   ============================================ */
.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.quote-icon {
    font-size: 30px;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
}

.author-info h5 {
    margin: 15px 0 5px;
    color: var(--primary-color);
}

.rating i {
    color: #FFD966;
    font-size: 14px;
}

/* ============================================
   Investment Guide
   ============================================ */
.guide-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.guide-features {
    list-style: none;
    padding: 0;
}

.guide-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.guide-features li i {
    color: var(--primary-color);
    font-size: 18px;
}

/* ============================================
   FAQ Accordion
   ============================================ */
.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.accordion-button {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 15px 20px;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient);
    color: white;
}

.accordion-button i {
    margin-right: 10px;
    color: var(--primary-color);
}

.accordion-button:not(.collapsed) i {
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    background: var(--gradient);
    padding: 60px 0;
    color: white;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn-primary:hover {
    background: #FFD966;
    color: var(--primary-dark);
}

/* ============================================
   Page Header
   ============================================ */
.page-header {
    background: var(--gradient);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.breadcrumb {
    background: transparent;
    justify-content: center;
    margin-top: 15px;
}

.breadcrumb-item a {
    color: #FFD966;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: white;
}

/* ============================================
   Filter Sidebar
   ============================================ */
.filter-sidebar {
    background: white;
    padding: 25px;
    border-radius: 15px;
    position: sticky;
    top: 100px;
}

.filter-sidebar h4 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 18px;
}

.filter-group {
    margin-bottom: 20px;
}

.filter-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #FFD966;
}

.footer-brand-name {
    font-size: 28px;
    font-weight: 800;
    color: white;
    margin-bottom: 5px;
}

.footer-tagline {
    font-size: 10px;
    letter-spacing: 2px;
    color: #FFD966;
    text-transform: uppercase;
}

.footer-about {
    color: #CBD5E1;
    line-height: 1.6;
    font-size: 14px;
    margin-top: 15px;
}

.footer-widget h4 {
    color: #FFD966;
    margin-bottom: 25px;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #FFD966;
}

.footer-widget ul {
    list-style: none;
    padding: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #CBD5E1;
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-widget ul li a:hover {
    color: #FFD966;
    transform: translateX(5px);
    display: inline-block;
}

.contact-details p {
    margin-bottom: 12px;
    font-size: 14px;
    color: #CBD5E1;
}

.contact-details i {
    width: 30px;
    color: #FFD966;
}

.contact-details a {
    color: #CBD5E1;
    text-decoration: none;
}

.contact-details a:hover {
    color: #FFD966;
}

.newsletter-form .input-group {
    border-radius: 50px;
    overflow: hidden;
}

.newsletter-form input {
    border: none;
    padding: 12px 20px;
    background: rgba(255,255,255,0.1);
    color: white;
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
}

.newsletter-form input:focus {
    background: rgba(255,255,255,0.15);
    outline: none;
}

.newsletter-form button {
    background: #FFD966;
    border: none;
    color: var(--primary-dark);
    font-weight: 600;
    padding: 12px 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    transition: var(--transition);
    text-decoration: none;
}

.social-icons a:hover {
    background: #FFD966;
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 40px;
    font-size: 13px;
    color: #94A3B8;
}

.designer-link {
    color: #FFD966;
    text-decoration: none;
    font-weight: 600;
}

.designer-link:hover {
    text-decoration: underline;
}

/* ============================================
   Scroll to Top
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--gradient);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    z-index: 999;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.scroll-top:hover {
    background: #FFD966;
    color: var(--primary-dark);
    transform: translateY(-3px);
}

/* ============================================
   Form Controls
   ============================================ */
.form-control, .form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #CBD5E1;
    border-radius: 10px;
    font-size: 14px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(15,76,58,0.1);
}

/* ============================================
   Animations
   ============================================ */
@keyframes pulse-gold {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,217,102,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255,217,102,0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Enhanced Country Code Dropdown Styling */
.country-code-select {
    max-width: 180px;
    border-radius: 8px 0 0 8px;
    border-right: none;
    cursor: pointer;
    font-size: 14px;
    padding: 10px 8px;
    background-color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

.country-code-select option {
    padding: 10px;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", sans-serif;
}

.country-code-select:hover {
    border-color: var(--primary-color);
}

/* For mobile devices */
@media (max-width: 768px) {
    .country-code-select {
        max-width: 140px;
        font-size: 12px;
        padding: 8px 5px;
    }
}

@media (max-width: 576px) {
    .country-code-select {
        max-width: 120px;
        font-size: 11px;
        padding: 8px 4px;
    }
}

/* Input group styling */
.input-group {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.input-group input {
    border-radius: 0 8px 8px 0;
    flex: 1;
}