 /* iPad-specific media queries */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) {
    .user-image
    {
        width : 45px;
        height : 45px;
    }
    .review-text
    {
        font-size : 12px;
    }
    .stars
    {
        font-size : 10px;
    }
    .reviewer-info
    {
        font-size : 10px;
    }

    .pill-button.rent,.pill-button.calc
    {

        font-size:12px !important;
    }

}
.form-control,
.input-group-text {
    border-radius: 20px !important;
}
.time-filter-container .col-md-6:first-child {
    padding-right: 15px;
}

.cp-features-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 2rem;
}

.cp-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cp-feature i {
  font-size: 1.5rem;
  color: #32BD7A;
}

.cp-feature span {
  font-size: 0.9rem;
  font-weight: 600;
  color: #374151;
  margin-top: 0.5rem;
}

.form-control {
  background-color: white;
  border: 1px solid #e5e7eb;
}

.form-control:focus {
  border-color: #32BD7A;
  box-shadow: 0 0 0 3px rgba(50, 189, 122, 0.1);
}

@media (max-width: 768px) {
  .cp-features-row {
    padding: 0.5rem;
  }
  
  .cp-hero-title {
    font-size: 2.2rem !important;
    text-align: center;
  }
  
  .cp-subtitle {
    text-align: center;
  }
}
/* Ensure the form fields are properly styled and spaced */
.search-input,
.datetime-input {
  height: auto !important;
  transition: all 0.2s ease;
}

.search-input:focus,
.datetime-input:focus {
  border-color: #0071BD !important;
  box-shadow: 0 0 0 3px rgba(0,113,189,0.1) !important;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  border-radius: 12px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .cp-hero-title {
    font-size: 1.1rem !important;
    text-align: center;
  }
  
  .cp-subtitle {
    text-align: center;
  }
  
  .search-container {
    margin-top: 2rem;
  }
  
  .time-filter-container .col-md-6:first-child {
    margin-bottom: 1rem;
  }

}

/* Fix flatpickr styling */
.flatpickr-input {
  background: #F9FAFB !important;
}

/* Ensure proper spacing between attached forms */
.time-filter-container .row {
  margin: 0 -8px;
}

.time-filter-container [class*="col-"] {
  padding: 0 8px;
}
.btn-sweep {
  position: relative;
  overflow: hidden;
  background: #32BD7A;
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: color 0.3s ease;
  z-index: 1;
  width: 100%; /* Added to make button fit container width */
  margin-top: 1rem; /* Added spacing from image */
}

.btn-sweep:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0%;
  height: 100%;
  background: #2aa067;
  transition: width 0.3s ease;
  z-index: -1;
}

.btn-sweep:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}

.btn-sweep:hover {
  color: white;
}
.why-coparking-feature {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 2rem;
    border-radius: 20px;
    background: white;
    height: 100%;
}

.why-coparking-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon-wrapper {
    background: rgba(50, 189, 122, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-coparking-feature:hover .feature-icon-wrapper {
    background: #0071BD;
}

.why-coparking-feature:hover .feature-icon {
    color: white !important;
}

.stat-container {
    padding: 30px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.stat-container:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.cta-title {
    color: white;
    font-size: 2rem;
    font-weight: 800;
    margin: 2rem 0;
    text-align: center;
}

.cta-subtitle {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-primary {
    background: white;
    color: #0071BD;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
    min-width: 250px;
    text-align: center;
}

.cta-primary:hover {
    background: transparent;
    color: white;
    text-decoration: none;
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
    min-width: 250px;
    text-align: center;
}

.cta-secondary:hover {
    background: white;
    color: #0071BD;
    text-decoration: none;
}

@media (max-width: 768px) {
    .stat-container {
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .cta-title {
        font-size: 1.2rem;
    }
    
    .cta-subtitle {
        font-size: 1rem;
    }
}
/* Add these styles to your existing CSS */
.laptop-display-container {
    position: relative;
    padding: 40px 0;
}

.laptop-content {
    display: flex;
    align-items: center;
    gap: 30px;
}

.laptop-text {
    flex: 0 0 45%;
    padding-right: 20px;
}

.laptop-image {
    flex: 0 0 55%;
    position: relative;
}

.laptop-image img {
    width: 100%;
    max-width: none;
    height: auto;
    transform: scale(1.2);
    transform-origin: right center;
}

@media (max-width: 768px) {
    .laptop-content {
        flex-direction: column;
    }
    
    .laptop-text,
    .laptop-image {
        flex: 0 0 100%;
    }
    
    .laptop-image img {
        transform: none;
        margin-top: 20px;
    }
}

.stat-container {
    padding: 30px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
    text-align : center;
}

.stat-container:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}



.cta-subtitle {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-primary {
    background: white;
    color: #0071BD;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
    min-width: 250px;
    text-align: center;
}

.cta-primary:hover {
    background: transparent;
    color: white;
    text-decoration: none;
}

.cta-secondary {
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s ease;
    min-width: 250px;
    text-align: center;
}

.cta-secondary:hover {
    background: white;
    color: #0071BD;
    text-decoration: none;
}

@media (max-width: 768px) {
    .stat-container {
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 300px;
    }
    
   
    
    .cta-subtitle {
        font-size: 1rem;
    }

}
.custom-accordion .accordion-button:not(.collapsed) {
    background-color: #0071BD !important;
    color: white;
    border: 1px solid #0071BD !important;
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: #0071BD;
}

.custom-accordion .accordion-button::after {
    background-size: 16px;
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.custom-accordion .accordion-body {
    border: 1px solid #e9ecef;
    border-top: none;
}

.custom-accordion .accordion-button {
    padding: 20px 25px;
    transition: all 0.3s ease;
}

.custom-accordion .accordion-button:hover {
    background-color: #e9ecef !important;
}

.custom-accordion .accordion-button:not(.collapsed):hover {
    background-color: #005c99 !important;
}

.custom-accordion ul {
    list-style-type: none;
    padding-left: 0;
}

.custom-accordion ul li {
    position: relative;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}

.custom-accordion ul li:before {
    content: "•";
    color: #0071BD;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.custom-accordion ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .container {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .display-4 {
        font-size: 2rem;
    }
    
    .accordion-button {
        padding: 15px 20px;
    }
}
@media (max-width: 768px) {
.cp-hero-section img {
border-radius: 24px 24px 0 0 !important;
height: 300px !important;
}

.cp-hero-content {
padding-top: 20px;
}
}


.hero-wrapper {
display: flex;
margin: 0;
padding: 0;
background: transparent;
}

.hero-image-section {
width: 50%;
position: relative;
margin: 0;
padding: 0;
}

.hero-image {
width: 100%;
height: 100vh;
object-fit: cover;
margin: 0;
padding: 0;
display: block;
border-radius: 0;
}

.hero-content-section {
width: 50%;
padding: 80px 60px;
background: lightcyan;
}

.hero-title {
font-weight: 900;
font-size: 1.8rem;
line-height: 1.1;
color: #1A1A1A;
margin-bottom: 20px;
}

.hero-subtitle {
color: #666;
font-size: 0.9rem;
line-height: 1.5;
margin-bottom: 30px;
}

.search-container {
margin-top: 40px;
background: #FFF;
border-radius: 24px;
padding: 1.5rem;
box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.feature-icons {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 1.5rem;
padding: 0 1rem;
}

.feature-item {
text-align: center;
}

.feature-icon {
color: #0071BD;
font-size: 24px;
margin-bottom: 0.5rem;
}

.feature-text {
font-weight: 600;
color: #333;
font-size: 14px;
}

.search-input-wrapper {
margin-bottom: 1rem;
}

.search-input,
.datetime-input {
width: 100%;
padding: 15px 20px;
border: 1px solid #E5E7EB;
border-radius: 12px;
font-size: 1rem;
background: #F9FAFB;
}

.time-inputs {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
}

.time-input-group {
flex: 1;
}

.search-button {
width: 100%;
padding: 15px;
background-color: #0071BD;
color: white;
border: none;
border-radius: 12px;
font-size: 1.1rem;
font-weight: 600;
cursor: pointer;
box-shadow: 0 4px 12px rgba(0,113,189,0.2);
}

@media (max-width: 768px) {
.hero-wrapper {
    flex-direction: column;
}

.hero-image-section {
    width: 100%;
    height: 300px;
}

.hero-image {
    height: 300px;
}

.hero-content-section {
    width: 100%;
    padding: 40px 10px;
}

.time-inputs {
    flex-direction: column;
}
}
.feature-box {
transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-box:hover {
transform: translateY(-5px);
box-shadow: 0 6px 15px rgba(0,113,189,0.1);
}

@media (max-width: 768px) {
.app-description {
    padding-left: 0 !important;
    margin-top: 30px;
}

.video-container {
    margin-bottom: 30px !important;
}

.app-title {
    font-size: 2rem !important;
}

.feature-box {
    margin-bottom: 20px;
}

.pad50
{
    padding-top:0px !important;
    padding-bottom:50px!important;
}
}

/* Hero section responsive styles */
.hero-wrapper {
    display: flex;
    margin: 0;
    padding: 0;
    background: transparent;
}

.hero-image-section {
    width: 50%;
    position: relative;
    margin: 0;
    padding: 0;
}

.hero-image {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    margin: 0;
    padding: 0;
    display: block;
    border-radius: 0;
}

.hero-content-section {
    width: 50%;
    padding: 80px 60px;
    background: lightcyan !important;
}

/* Tablet and Mobile Responsive Design */
@media only screen 
and (max-width: 1024px) {
    .hero-wrapper {
        flex-direction: column;
    }

    .hero-image-section {
        width: 100%;
        height: 300px;
    }

    .hero-image {
        height: 300px;
        border-radius: 0;
    }

    .hero-content-section {
        width: 100%;
        padding: 20px 10px;
    }

    .time-inputs {
        flex-direction: column;
    }

    .hero-title {
        text-align: center;
        font-size: 1.5rem;
    }

    .hero-subtitle {
        text-align: center;
    }

    .search-container {
        margin: 20px auto;
        max-width: 90%;
    }
}

/* iPad-specific refinements */
@media only screen 
and (min-device-width: 768px) 
and (max-device-width: 1024px) {
    .hero-image-section {
        height: 400px; /* Slightly taller for iPad */
    }

    .hero-image {
        height: 400px;
    }

    .hero-content-section {
        padding: 40px 40px; /* Slightly more padding for iPad */
    }

    .search-container {
        max-width: 80%; /* Slightly wider container for iPad */
    }
}





