:root {
     --primary-color: #ffc107;
     --dark-gray: #1F2937;
     --medium-gray: #6B7280;
     --light-gray: #F3F4F6;
     --border-color: #E5E7EB;
     --body-bg: #FFFFFF;
     --danger-color: #DC3545;
}

.hero-home {
     display: flex;
     align-items: center;
     height: 100vh;
     padding: 0;
     background: linear-gradient(120deg, #fff7ed, #fef3c7);
     overflow: hidden;
     border-radius: 0 0 100px 100px;
}

.hero-text {
     max-width: 500px;
}

.hero-text h1 {
     font-size: 3rem;
     line-height: 1.2;
     color: #111827;
}

.hero-text p {
     margin: 20px 0;
     font-size: 1.1rem;
     color: #374151;
}

.hero-image {
     text-align: center;
}

.hero-image img {
     max-width: 100%;
     height: auto;
     max-height: 85vh;
     object-fit: contain;
     border-radius: 20px;
     transition: transform 0.3s ease-in-out;
}


.hero-btn,
.hero-btn-find {
     padding: 0.8rem 2rem;
     font-weight: 600;
     border-radius: 8px;
     text-transform: none;
     font-size: 1rem;
     letter-spacing: 0;
     border-width: 2px;
     transition: all 0.2s ease;
     box-shadow: none !important;
     text-decoration: none;
}

.hero-btn {
     background-color: var(--primary-color);
     border-color: var(--primary-color);
     color: var(--dark-gray);
}

.hero-btn:hover {
     background-color: #ffca2c;
     border-color: #ffca2c;
}

.actions-grid {
     display: grid;
     gap: 2rem;
     max-width: 1100px;
     margin: 0 auto;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.action-item {
     text-decoration: none;
     color: var(--dark-gray);
}

.action-item i {
     font-size: 2rem;
     color: var(--primary-color);
     margin-bottom: 1rem;
     background: var(--light-gray);
     width: 70px;
     height: 70px;
     line-height: 70px;
     border-radius: 50%;
     border: 1px solid var(--border-color);
}

.action-item h4 {
     font-weight: 600;
     font-size: 1.1rem;
}


.btn-primary {
     background: #ffc107;
     color: #1a1a1a;
     padding: 1rem 2rem;
     border: none;
     border-radius: 50px;
     font-weight: 700;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
}

.btn-primary:hover {
     transform: translateY(-3px);
     box-shadow: 0 15px 35px rgba(255, 193, 7, 0.2);
     background: #ffca2c;
}

.btn-danger {
     background: #dc3545;
     color: #fff;
     padding: 1rem 2rem;
     border: none;
     border-radius: 50px;
     font-weight: 700;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
     margin-top: 20px;
}

.btn-danger:hover {
     background: #bb2d3b;
     transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(220, 53, 69, 0.4);
}

.btn-danger:active {
     background: #a71d2a;
     transform: translateY(-1px);
     box-shadow: 0 5px 15px rgba(220, 53, 69, 0.4);
}

.btn-danger:focus {
     outline: none;
     box-shadow: 0 0 0 0.25rem rgba(220, 53, 69, 0.5);
}


.btn-secondary {
     background: transparent;
     color: white;
     padding: 1rem 2rem;
     border: 2px solid rgba(255, 255, 255, 0.5);
     border-radius: 50px;
     font-weight: 700;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
}

.btn-secondary:hover {
     background: rgba(255, 255, 255, 0.1);
     border-color: white;
     transform: translateY(-2px);
}
.emergency-section {
     padding: 100px 0;
       background: rgba(255, 99, 71, 0.3)
}
.how-it-works,
.features,
.for-partners,
.exclusive-features,
.contact-us,
.cta-section {
     padding: 100px 0;
     background: #f8fafc;
}

.for-partners,
.exclusive-features,
.how-it-works,
.contact-us,
.cta-section {
     background: #ffffff;
}

.features-grid,
.how-it-works-grid {
     display: grid;
     grid-template-columns: 1fr;
     gap: 2rem;
     margin-top: 4rem;
}

.feature-card,
.how-it-works-card {
     background: white;
     padding: 2.5rem 2rem;
     border-radius: 0 20px 0 20px;
     border: 2px solid; 
     text-align: left;
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
}

.card-border-blue { border-color: #3B82F6; }
.card-icon-blue { color: #3B82F6; }

.card-border-green { border-color: #10B981; }
.card-icon-green { color: #10B981; }

.card-border-purple { border-color: #8B5CF6; }
.card-icon-purple { color: #8B5CF6; }

.card-border-red { border-color: #EF4444; }
.card-icon-red { color: #EF4444; }

.card-icon {
     position: absolute;
     top: 20px;
     right: 25px;
     font-size: 2.5rem;
     opacity: 0.8;
}

.feature-card h3,
.how-it-works-card h3 {
     font-size: 1.5rem;
     font-weight: 700;
     margin-bottom: 0.75rem;
     color: var(--dark-gray);
     padding-right: 40px;
}

.feature-card p,
.how-it-works-card p {
     color: var(--medium-gray);
     line-height: 1.6;
     margin-bottom: 1.5rem;
     flex-grow: 1;
}

.feature-card h4, .how-it-works-card h4 {
     font-size: 1rem;
     font-weight: 600;
     color: var(--dark-gray);
     margin-bottom: 0.75rem;
     margin-top: auto;
}

.feature-card ul, .how-it-works-card ul {
     list-style: none;
     padding-left: 0;
     margin: 0;
     color: var(--medium-gray);
}

.feature-card ul li, .how-it-works-card ul li {
     padding-left: 1.5em;
     position: relative;
     margin-bottom: 0.5rem;
}

.feature-card ul li::before, .how-it-works-card ul li::before {
     content: '✓';
     position: absolute;
     left: 0;
     color: var(--primary-color);
     font-weight: 700;
}

.feature-icon, .how-it-works-number {
     display: none;
}

.section-title {
     text-align: center;
     font-size: 2.5rem;
     font-weight: 800;
     margin-bottom: 1rem;
     color: #1a1a1a;
}

.section-subtitle {
     text-align: center;
     font-size: 1.1rem;
     color: #666;
     max-width: 600px;
     margin: 0 auto;
}

.emergency-layout {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 3rem;
     padding-top: 2rem;
}

.emergency-content {
     text-align: left;
     flex: 1;
}

.emergency-image-container {
     flex: 1;
     text-align: right;
}

.emergency-image-container img {
     max-width: 100%;
     height: auto;
     mix-blend-mode: multiply;
     background: linear-gradient(135deg, #f8d6d6 0%, #fbeaea 100%);

}

.emergency-section .section-title,
.emergency-section .section-subtitle {
     text-align: left;
}

@media (max-width: 992px) {
     .emergency-layout {
         flex-direction: column;
     }

     .emergency-content,
     .emergency-image-container {
         text-align: center;
     }

     .emergency-section .section-title,
     .emergency-section .section-subtitle {
         text-align: center;
     }
}

.contact-grid {
     display: grid;
     grid-template-columns: 1fr 1.5fr;
     gap: 3rem;
     margin-top: 4rem;
     align-items: center;
}

.contact-info .info-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 2rem;
}

.contact-info .info-item i {
     font-size: 1.5rem;
     color: #ffc107;
     margin-right: 1.5rem;
     margin-top: 5px;
}

.contact-info h4 {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 0.25rem;
}

.contact-info p {
     color: #666;
}

.contact-action h3 {
     font-size: 1.8rem;
     font-weight: 700;
     margin-bottom: 1rem;
}

.contact-action p {
     color: #666;
     margin-bottom: 2rem;
}

.stats {
     background: #1a1a1a;
     color: white;
     padding: 80px 0;
}

.stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 3rem;
}

.stat-item {
     text-align: center;
}

.stat-number {
     font-size: 3rem;
     font-weight: 800;
     color: #ffc107;
     margin-bottom: 0.5rem;
}

.stat-label {
     font-size: 1.1rem;
     opacity: 0.8;
}

.cta-section {
     color: #1a1a1a;
     text-align: center;
}

.cta-content h2 {
     font-size: 2.5rem;
     font-weight: 800;
     margin-bottom: 1.5rem;
}

.cta-content p {
     font-size: 1.2rem;
     margin-bottom: 2.5rem;
     opacity: 0.9;
     max-width: 600px;
     margin-left: auto;
     margin-right: auto;
}

.cta-section .btn-secondary {
     border-color: #1a1a1a;
     color: #1a1a1a;
}

.cta-section .btn-secondary:hover {
     background: #1a1a1a;
     color: white;
}

.landing-page footer {
     background: #1a1a1a;
     color: white;
     padding: 60px 0 30px;
}

.footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 3rem;
     margin-bottom: 3rem;
}

.footer-section h3 {
     font-size: 1.3rem;
     font-weight: 700;
     margin-bottom: 1rem;
     color: #ffc107;
}

.footer-section p,
.footer-section a {
     color: #ccc;
     text-decoration: none;
     line-height: 1.8;
}

.footer-section a:hover {
     color: #ffc107;
     transition: color 0.3s ease;
}

.footer-bottom {
     border-top: 1px solid #333;
     padding-top: 2rem;
     text-align: center;
     color: #999;
}

@keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(30px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
}

.animate-on-scroll {
     opacity: 0;
}

.animate-on-scroll.animated {
     animation: fadeInUp 0.8s ease forwards;
}

@media (max-width: 991.98px) {
     .hero-home {
         height: auto;
         min-height: 90vh;
         padding: 80px 0;
         text-align: center;
     }

     .hero-text {
         margin: 0 auto;
     }

     .hero-cta-buttons {
         justify-content: center !important;
     }
}

@media (max-width: 576px) {
     .hero-text h1 {
         font-size: 2.5rem;
          margin-top:60px;
     }

 .hero-btn {
     padding: 10px 20px;
     font-size: 14px;
     width: auto;         
     display: inline-block; 
     box-sizing: border-box;
 }


     .hero-home {
         margin-top: 0 !important;
         padding-top: 100px;
         padding-bottom: 60px;
     }
}

.cta-buttons {
     display: flex !important;
     flex-direction: column !important;
     gap: 12px !important;
}

@media (min-width: 577px) {
     .cta-buttons {
         flex-direction: row !important;
         justify-content: center !important;
     }
}

@media (max-width: 768px) {
     .hero-text h1 {
         font-size: 2.5rem;
     }

     .hero-text p {
         font-size: 1.1rem;
     }

     .hero-cta-buttons {
         flex-direction: column !important;
         align-items: center;
         gap: 1rem !important;
     }

     .hero-cta-buttons a {
         width: fit-content;
         max-width: 350px !important;
     }

     .contact-grid {
         grid-template-columns: 1fr;
     }

     .section-title {
         font-size: 2rem;
     }
}

@media (min-width: 768px) {

     .features-grid,
     .how-it-works-grid {
         grid-template-columns: repeat(2, 1fr);
     }
}

@media (min-width: 992px) {

     .features-grid,
     .how-it-works-grid {
         grid-template-columns: repeat(3, 1fr);
     }
}

.full-page-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-color: rgba(255, 255, 255, 0.8);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 9999;
     backdrop-filter: blur(5px);
     -webkit-backdrop-filter: blur(5px);

}

.loading-indicator {
     text-align: center;
     background: #fff;
     padding: 30px 40px;
     border-radius: 15px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     display: flex;
     flex-direction: column;
     align-items: center;
}

.loading-indicator p {
     margin-top: 20px;
     font-size: 1.2rem;
     font-weight: 500;
     color: #333;
}

.spinner {
     width: 60px;
     height: 60px;
     border: 7px solid #f3f3f3;
     border-top: 7px solid #ffc107;
     border-radius: 50%;
     animation: spin 1s linear infinite;
}

@keyframes spin {
     0% {
         transform: rotate(0deg);
     }

     100% {
         transform: rotate(360deg);
     }
}

@media (max-width: 768px) {
 .hero-btn {
     padding: 10px 20px;
     font-size: 14px;
     width: auto;         
     display: inline-block;
     box-sizing: border-box;
 }
}