:root {
    --primary-blue: #007BFF;
    --light-blue: #E3F2FD;
    --navy-blue: #003366;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --dark-gray: #343A40;
    --text-dark: #212529;
    --text-light: #6C757D;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    padding-top: 0; /* Removed space for fixed header */
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: fixed !important;
    width: 100%;
    top: 0 !important;
    z-index: 1000 !important;
    visibility: visible !important;
    opacity: 1 !important;
    transition: none !important;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

header.scrolled {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Gradient background for all h2 elements */
h2 {
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0; /* Reduced from 25px to 15px for smaller header */
    position: relative;
}

/* Reduce header size on desktop */
@media (min-width: 769px) {
    .header-container {
        padding: 8px 0; /* Reduced from 10px to 8px for desktop */
    }
}

.logo {
    text-decoration: none;
}

.logo-img {
    height: 60px; /* Increased logo size */
    width: auto;
}

/* Larger logo on desktop */
@media (min-width: 769px) {
    .logo-img {
        height: 50px; /* Further reduced size on desktop */
    }
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

header.scrolled nav ul li a {
    color: var(--text-dark);
}

nav ul li a:hover {
    color: var(--primary-blue);
}

nav ul li a.active {
    color: var(--primary-blue);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-dark);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1001;
}

header.scrolled .mobile-menu-btn {
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    color: var(--white);
    text-align: center;
    padding-top: 0;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Increased darkness for better text readability */
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    background: rgba(0, 0, 0, 0.6); /* Reduced opacity from 0.8 to 0.6 for more transparency */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero h1 {
    font-size: 50px; /* Desktop font size remains the same */
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

/* Mobile-specific adjustment */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 25px; /* 25px on mobile devices */
    }
}

.typing-effect {
    color: #00c3ff;
    display: inline-block;
    overflow: hidden;
    border-right: 0.15em solid #00c3ff;
    white-space: nowrap;
    vertical-align: top;
    margin: 0;
    padding: 0;
}

/* Removed keyframe animations as they are now handled by JavaScript */

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add text shadow for better readability */
    color: var(--white); /* Changed to white */
}

/* Hero buttons container */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* Half-width buttons */
.btn-half {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
    margin-top: 0;
}

/* Emergency button specific styling */
.btn-emergency {
    background: linear-gradient(135deg, #ff4757, #c44569) !important;
    animation: pulse-emergency 2s infinite;
    position: relative;
}

.btn-emergency:hover {
    background: linear-gradient(135deg, #c44569, #ff4757) !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.5);
}

.btn-emergency::before {
    content: '\1F6A8';
    margin-right: 8px;
    font-size: 1.2em;
}

/* Emergency button pulse animation */
@keyframes pulse-emergency {
    0% {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.3), 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.3), 0 0 0 10px rgba(255, 71, 87, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.3), 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

/* Mobile responsive adjustments for hero buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }
    
    .btn-half {
        width: 100%;
        max-width: none;
        min-width: auto;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        gap: 12px;
        margin-top: 15px;
    }
    
    .btn-half {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px; /* Keep rounded buttons */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease; /* Enhanced transition */
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5); /* Add text shadow to button text */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow */
    position: relative;
    overflow: hidden;
}

.btn:hover {
    background: linear-gradient(135deg, #1188CE, #39DEFC); /* Reverse gradient on hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

/* Section Title Styles */
.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
}

.section-title p {
    font-size: 1.1rem;
    text-align: center;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Desktop: Center and increase size of h2 and p elements */
@media (min-width: 769px) {
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .section-title p {
        font-size: 1.3rem;
    }
}

/* Features Section */
.features {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

/* Desktop: Make feature cards side-by-side */
@media (min-width: 769px) {
    .features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
    }
    
    .feature-card {
        flex: 1;
        min-width: 250px;
        max-width: 350px;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
    
    .features .feature-card {
        height: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .features .feature-card .feature-icon,
    .features .feature-card h3,
    .features .feature-card p {
        flex: 0 0 auto;
    }
    
    .features .feature-card h3 {
        margin-top: auto;
        margin-bottom: 15px;
    }
    
    .features .feature-card p {
        flex-grow: 1;
        margin-bottom: 0;
    }
}

.feature-card {
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    color: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    flex: 1;
}

/* Specific styles for feature cards in Neden TamirPro section to match mission cards */
.features .feature-card {
    padding: 40px 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    max-width: 500px;
    width: 100%;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: space-between;
}

/* Specific style for the second feature card */
.feature-card-2 {
    background: linear-gradient(135deg, #39DEFC, #1188CE);
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--white);
    font-size: 1.5rem;
    text-align: center;
    flex: 0 0 auto;
}

.feature-card p {
    color: var(--white);
    font-size: 1rem;
    text-align: center;
    line-height: 1.6;
    flex: 1 1 auto;
    margin-bottom: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-blue);
    font-size: 25px;
    flex: 0 0 auto;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    background-color: #1a75ff;
    color: var(--white);
}

.feature-card:hover h3,
.feature-card:hover p {
    color: var(--white);
}

.feature-card:hover .feature-icon {
    background-color: var(--navy-blue);
    color: var(--white);
}

/* Services Section */
.services {
    background-color: var(--light-gray);
    margin: 60px 0; /* Ensure consistent spacing */
}

.services-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

/* Desktop: Make service cards side-by-side */
@media (min-width: 769px) {
    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .service-card {
        flex: 1;
        min-width: 250px;
        max-width: 350px;
    }
}

.mission-card {
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    color: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    border-radius: 15px;
    padding: 30px 20px; /* Reduced padding to minimize white space */
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    color: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.service-card h3 {
    color: var(--white); /* Changed from navy-blue to white */
    font-size: 1.8rem; /* Increased font size */
    margin-bottom: 15px; /* Added margin */
}

.service-card h4 {
    color: var(--white); /* Changed from navy-blue to white */
    font-size: 1.4rem; /* Increased font size */
    margin-bottom: 10px; /* Added margin */
}

.service-card p {
    color: var(--white); /* Changed to white */
    font-size: 0.8rem; /* Reduced font size */
    line-height: 1.5; /* Adjusted line height */
    text-align: center; /* Center the text */
}

.service-content {
    padding: 10px; /* Reduced padding */
}

.service-price {
    text-align: center; /* Center the button */
    margin: 5px 0; /* Reduced margin */
}

.btn-small {
    display: inline-block;
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    color: var(--white);
    padding: 8px 15px; /* Updated padding */
    border-radius: 20px; /* More rounded corners */
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease; /* Enhanced transition */
    border: none;
    cursor: pointer;
    font-size: 0.9rem; /* Updated font size */
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
    text-align: center;
    width: auto;
    position: relative;
    overflow: hidden;
}

.btn-small:hover {
    background: linear-gradient(135deg, #1188CE, #39DEFC); /* Reverse gradient on hover */
    transform: translateY(-2px); /* Slight lift effect */
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25); /* Enhanced shadow on hover */
}

.btn-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-small:hover::before {
    transform: translateX(100%);
}

.service-header {
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    color: var(--white); /* Added white text */
    text-align: center; /* Centered text */
    padding: 15px; /* Updated from 10px */
    border-radius: 15px 15px 0 0; /* Rounded top corners */
}

.service-header h3 {
    margin: 0; /* Removed default margin */
    font-size: 1.2rem; /* Reduced font size */
}

.service-img {
    height: auto;
    background-color: transparent; /* Remove background color */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 25px;
    padding: 0; /* Remove padding */
    margin: 0; /* Remove margin */
}

.service-image {
    height: auto;
    background-color: var(--light-blue); /* Kept background color */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue); /* Kept primary-blue */
    font-size: 25px; /* Reduced font size */
}

/* Service image styling for actual images */
img.service-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    padding: 0;
    border-radius: 15px;
    margin: 0; /* Remove margin */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Areas Section */
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
    gap: 15px;
}

.area-card {
    background: linear-gradient(135deg, #39DEFC, #1188CE); /* Updated to gradient */
    border-radius: 15px; /* Updated from 5px */
    padding: 15px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.area-card:hover {
    transform: scale(1.05);
}

.area-icon {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 10px;
}

.area-card h3 {
    margin-bottom: 8px;
    color: var(--white);
    font-size: 1.2rem;
}

/* Additional paragraph in areas section */
#areas p {
    color: var(--white); /* White color as requested */
}

/* Specific style for other areas text */
#areas div[style*='text-align: center'] p.other-areas-text {
    color: #000000 !important; /* Black color as requested */
}

@media (max-width: 576px) {
    /* Mobile layout adjustment for area cards - place 3rd card between first two */
    .areas-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .areas-grid .area-card:nth-child(1) {
        grid-column: 1;
        grid-row: 1;
    }
    
    .areas-grid .area-card:nth-child(2) {
        grid-column: 2;
        grid-row: 1;
    }
    
    .areas-grid .area-card:nth-child(3) {
        grid-column: 1 / span 2;
        grid-row: 2;
        max-width: 50%;
        justify-self: center;
        margin: 0 auto;
    }
    
    .section {
        padding: 50px 0;
        margin: 40px 0; /* Ensure consistent spacing on mobile */
    }
    
    .section-title {
        padding: 0 15px; /* Add spacing on mobile */
    }
    
    .container {
        padding: 0 15px; /* Even less padding on smaller screens */
    }
    
    .services-grid,
    .features,
    .areas-grid,
    .footer-grid {
        grid-gap: 15px; /* Reduce gaps on mobile */
        padding: 0 10px; /* Add spacing from screen edges */
    }
    
    /* Mobile optimization for feature cards */
    .features {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .feature-card {
        padding: 20px 15px; /* More compact padding */
        margin: 0 5px; /* Add spacing from edges */
    }
    
    /* Mobile optimization for mission cards */
    .mission-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .mission-card {
        padding: 20px 15px; /* More compact padding */
        margin: 0 5px; /* Add spacing from edges */
    }
    
    .mission-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin: 0 auto 15px;
    }
    
    .mission-card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }
    
    .mission-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    /* Mobile optimization for service cards */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 20px 15px; /* More compact padding */
        margin: 0 5px; /* Add spacing from edges */
    }
    
    /* Mobile optimization for about text */
    .about-text h1 {
        font-size: 1.8rem;
        line-height: 1.3;
        padding: 0 10px;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        padding: 0 10px;
        margin-bottom: 15px;
    }
    
    /* Mobile optimization for stats section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 0 10px;
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
    
    .stat-item p {
        font-size: 0.9rem;
    }
}

/* About Section */
.about-content {
    display: block;
    margin-bottom: 60px;
    padding: 0 20px; /* Add padding for better spacing */
}

.about-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-text h1 {
    font-size: 2.2rem;
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 25px;
    line-height: 1.3;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.about-text p {
    margin-bottom: 25px;
    color: #000000;
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

/* Services Section */
.services {
    background-color: #ffffff;
    margin: 60px 0; /* Ensure consistent spacing */
}

/* Mission Section */
.mission {
    background-color: #ffffff;
    padding: 80px 0;
}

.mission-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Desktop: Make mission cards side-by-side */
@media (min-width: 769px) {
    .mission-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .mission-card {
        flex: 1;
        min-width: 250px;
        max-width: 350px;
    }
}

.mission-card {
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    color: var(--white);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.mission-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.mission-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--white);
    font-size: 35px;
}

.mission-card p {
    color: var(--white);
    text-align: center;
    line-height: 1.6;
    font-size: 1.1rem;
}

.mission-card h3 {
    margin-bottom: 20px;
    color: var(--white);
    text-align: center;
    font-size: 1.8rem;
}

/* Stats Section */
.stats {
    padding: 60px 0;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    text-align: center;
    padding: 0 20px;
}

/* Desktop: Make stats boxes side-by-side */
@media (min-width: 769px) {
    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-item {
        flex: 1;
        min-width: 200px;
        max-width: 250px;
    }
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.stat-item h3 {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    margin-bottom: 15px;
    text-align: center;
}

.stat-item p {
    color: #000000;
    font-size: 1.2rem;
    text-align: center;
}

/* Team Section */
.team {
    background-color: var(--light-gray);
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--white);
    border-radius: 15px; /* Updated from 10px */
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.member-image {
    height: 250px;
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 80px;
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    margin-bottom: 5px;
    color: var(--navy-blue);
}

.member-info p {
    color: var(--primary-blue);
    margin-bottom: 15px;
}

/* Process Section - Redesigned */
.process {
    background: #ffffff;
    border-radius: 15px;
    padding: 80px 0;
    margin: 60px 0;
}

.process .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.process .section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.process .section-title p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0 20px;
}

.process-step-card {
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    color: white;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.step-circle {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.step-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.step-icon {
    font-size: 36px;
    margin-bottom: 20px;
    color: white;
}

.process-step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: white;
}

.process-step-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    text-align: center;
}

/* Responsive adjustments for Process Section */
@media (max-width: 992px) {
    .process-steps-container {
        gap: 25px;
    }
    
    .process-step-card {
        max-width: 320px;
        padding: 25px 20px;
    }
    
    .step-circle {
        width: 65px;
        height: 65px;
        margin-bottom: 20px;
    }
    
    .step-number {
        font-size: 1.8rem;
    }
    
    .step-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .process-step-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }
}

@media (max-width: 768px) {
    .process {
        padding: 60px 0;
        margin: 50px 0;
    }
    
    .process-steps-container {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .process-step-card {
        max-width: 100%;
        width: 100%;
        padding: 30px 25px;
    }
    
    .step-circle {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .step-icon {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .process-step-card h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .process {
        padding: 50px 0;
        margin: 40px 0;
    }
    
    .process .section-title h2 {
        font-size: 2rem;
    }
    
    .process .section-title p {
        font-size: 1rem;
    }
    
    .process-steps-container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .process-step-card {
        padding: 25px 20px;
    }
    
    .step-circle {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }
    
    .step-number {
        font-size: 1.7rem;
    }
    
    .step-icon {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .process-step-card h3 {
        font-size: 1.3rem;
        margin-bottom: 12px;
    }
}

/* Guarantee Section */
.guarantee {
    padding: 80px 0;
}

.guarantee-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.guarantee-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.guarantee-text p {
    margin-bottom: 20px;
}

.guarantee-text .exclusion-item {
    font-weight: bold;
    color: #000000;
}

/* Required field indicator */
.required {
    color: #e74c3c;
    font-weight: bold;
}


/* FAQ Section */
.faq {
    background-color: #ffffff;
    padding: 80px 0;
    margin: 60px 0; /* Ensure consistent spacing */
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    border-radius: 15px; /* Updated from 10px */
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--navy-blue);
}

.faq-question i {
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer p {
    padding: 20px 0;
    border-top: 1px solid #eee;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Map Section */
.map-section {
    margin-top: 60px;
}

.map-container {
    height: 400px;
    background-color: var(--light-gray);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 2rem;
}

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background-color: var(--light-gray);
}

.breadcrumb ul {
    display: flex;
    list-style: none;
}

.breadcrumb ul li {
    margin-right: 10px;
}

.breadcrumb ul li:not(:last-child)::after {
    content: ">";
    margin-left: 10px;
}

.breadcrumb ul li a {
    text-decoration: none;
    color: var(--primary-blue);
}

.breadcrumb ul li:last-child a {
    color: var(--text-light);
    pointer-events: none;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

/* Logo column - spans 1 column */
.footer-col:first-child {
    grid-column: 1;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    align-self: flex-start;
}

/* Content columns - each spans 1 column */
.footer-col:nth-child(2) {
    grid-column: 2;
}

.footer-col:nth-child(3) {
    grid-column: 3;
}

.footer-col:nth-child(4) {
    grid-column: 4;
}

.footer-col:nth-child(5) {
    grid-column: 5;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
    color: var(--light-blue); /* Added color for headings */
    white-space: nowrap;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #1a75ff;
}

.footer-col p {
    margin-bottom: 20px;
    color: var(--white); /* Changed to white */
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--light-blue); /* Changed from #adb5bd to light-blue */
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white); /* Changed from primary-blue to white */
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--light-blue); /* Changed from #adb5bd to light-blue */
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Transition Animations */
.page-transition {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.page-transition.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Section Visibility */
.page-section {
    display: none;
}

.page-section.active {
    display: block;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .guarantee-content {
        grid-template-columns: 1fr;
    }
    
    /* Improve mobile menu spacing */
    nav ul li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 70px; /* Adjust for mobile header height */
    }
    
    .hero {
        padding-top: 0;
        height: 80vh; /* Reduce height on mobile */
    }

    .hero h1 {
        font-size: 1.8rem; /* Reduced from 2rem to prevent text wrapping */
    }

    .form-container {
        padding: 25px;
    }
    
    .breadcrumb ul {
        flex-wrap: wrap;
    }
    
    .hero-content {
        padding: 20px;
        margin: 0 15px;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    nav ul {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.active {
        display: flex;
    }
    
    nav ul li {
        margin: 0;
        border-bottom: 1px solid #eee;
    }
    
    nav ul li a {
        display: block;
        padding: 15px 20px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .container {
        padding: 0 15px; /* Reduced padding on mobile */
    }
    
    .section {
        padding: 40px 0;
        margin: 30px 0; /* Ensure consistent spacing on tablet */
    }
    
    /* Improve mobile navigation */
    header {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 1000;
    }
    
    /* Optimize video background for mobile */
    .video-background {
        object-fit: cover;
    }
    
    /* Improve mobile form elements */
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        font-size: 16px; /* Prevent zoom on iOS */
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 15px;
        margin: 0 10px;
    }
    
    .logo-img-footer {
        height: 60px; /* Slightly smaller on mobile */
    }
    
    .hero h1 {
        font-size: 1.6rem; /* Further reduced for smaller screens */
    }
    
    .section {
        padding: 30px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
        background: linear-gradient(135deg, #39DEFC, #1188CE);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        color: transparent;
    }
    
    .container {
        padding: 0 10px; /* Even less padding on smaller screens */
    }
    
    .services-grid,
    .features,
    .areas-grid,
    .footer-grid {
        grid-gap: 15px; /* Reduce gaps on mobile */
    }
    
    /* Desktop styles for feature cards to match mission cards */
    .features {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        padding: 20px;
    }
    
    /* Mobile optimization for service cards */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 10px;
    }
    
    .service-card {
        padding: 20px 15px; /* More compact padding */
        margin: 0 5px; /* Add spacing from edges */
    }
    
    /* Improve mobile footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Reset column positioning for mobile */
    .footer-col:first-child,
    .footer-col:nth-child(2),
    .footer-col:nth-child(3),
    .footer-col:nth-child(4),
    .footer-col:nth-child(5) {
        grid-column: auto;
    }
    
    /* Optimize FAQ for mobile */
    .faq-item {
        margin-bottom: 15px;
    }
    
    /* Improve mobile button sizes */
    .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Optimize stats for mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Improve mobile form layout */
    .form-container {
        padding: 20px;
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    /* Optimize mission cards for mobile */
    .mission-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Lazy Load Animation Classes */
.section, .process, .guarantee, .faq, .stats, .mission {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible, .process.visible, .guarantee.visible, .faq.visible, .stats.visible, .mission.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation for Cards */
.feature-card, .service-card, .area-card, .mission-card, .step-card, .stat-item, .faq-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.visible, .service-card.visible, .area-card.visible, 
.mission-card.visible, .step-card.visible, .stat-item.visible, .faq-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger delay for cards */
.feature-card:nth-child(1), .service-card:nth-child(1), .area-card:nth-child(1),
.mission-card:nth-child(1), .step-card:nth-child(1), .stat-item:nth-child(1), .faq-item:nth-child(1) {
    transition-delay: 0.1s;
}

.feature-card:nth-child(2), .service-card:nth-child(2), .area-card:nth-child(2),
.mission-card:nth-child(2), .step-card:nth-child(2), .stat-item:nth-child(2), .faq-item:nth-child(2) {
    transition-delay: 0.2s;
}

.feature-card:nth-child(3), .service-card:nth-child(3), .area-card:nth-child(3),
.mission-card:nth-child(3), .step-card:nth-child(3), .stat-item:nth-child(3), .faq-item:nth-child(3) {
    transition-delay: 0.3s;
}

/* Fade in from bottom animation */
@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional Preymoon-style animations */
.section.preymoon-fade, .process.preymoon-fade, .guarantee.preymoon-fade, 
.faq.preymoon-fade, .stats.preymoon-fade, .mission.preymoon-fade {
    animation: fadeInBottom 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.feature-card.preymoon-fade, 
.service-card.preymoon-fade, 
.area-card.preymoon-fade,
.mission-card.preymoon-fade,
.step-card.preymoon-fade,
.stat-item.preymoon-fade,
.faq-item.preymoon-fade {
    animation: fadeInBottom 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

/* Staggered delays for Preymoon animations */
.feature-card.preymoon-fade:nth-child(1),
.service-card.preymoon-fade:nth-child(1),
.area-card.preymoon-fade:nth-child(1),
.mission-card.preymoon-fade:nth-child(1),
.step-card.preymoon-fade:nth-child(1),
.stat-item.preymoon-fade:nth-child(1),
.faq-item.preymoon-fade:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card.preymoon-fade:nth-child(2),
.service-card.preymoon-fade:nth-child(2),
.area-card.preymoon-fade:nth-child(2),
.mission-card.preymoon-fade:nth-child(2),
.step-card.preymoon-fade:nth-child(2),
.stat-item.preymoon-fade:nth-child(2),
.faq-item.preymoon-fade:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card.preymoon-fade:nth-child(3),
.service-card.preymoon-fade:nth-child(3),
.area-card.preymoon-fade:nth-child(3),
.mission-card.preymoon-fade:nth-child(3),
.step-card.preymoon-fade:nth-child(3),
.stat-item.preymoon-fade:nth-child(3),
.faq-item.preymoon-fade:nth-child(3) {
    animation-delay: 0.3s;
}

/* Universal Card Styles - Apply to all card-like elements */
.feature-card, .service-card, .area-card, .mission-card, .step-card, 
.stat-item, .faq-item, .team-member, .form-container, .guarantee-content,
.process-steps, .about-content, .hero-content {
    border-radius: 15px; /* Rounded corners for all cards */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); /* Subtle shadow for depth */
    position: relative;
    overflow: hidden;
}

/* Add subtle light effect on hover */
.feature-card:hover, .service-card:hover, .area-card:hover, 
.mission-card:hover, .step-card:hover, .team-member:hover, 
.faq-item:hover, .form-container:hover {
    transform: translateY(-5px); /* Slight lift effect */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

/* Add subtle light effect using pseudo-elements for glow */
.feature-card::before, .service-card::before, .area-card::before, 
.mission-card::before, .step-card::before, .team-member::before, 
.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 15px;
    pointer-events: none;
}

.feature-card:hover::before, .service-card:hover::before, .area-card:hover::before, 
.mission-card:hover::before, .step-card:hover::before, .team-member:hover::before, 
.faq-item:hover::before {
    opacity: 1; /* Show light effect on hover */
}

/* Special handling for elements that already have specific hover effects */
.service-card:hover, .feature-card:hover, .area-card:hover, 
.mission-card:hover, .step-card:hover, .team-member:hover {
    transform: translateY(-5px); /* Consistent lift effect */
}

/* Adjust existing hover effects to work with new universal styles */
.feature-card:hover {
    background-color: #1a75ff; /* Keep existing color change */
}

.service-card:hover {
    transform: translateY(-5px); /* Override existing transform */
}

.area-card:hover {
    transform: scale(1.02); /* Slight scale instead of existing scale */
}

.mission-card:hover, .step-card:hover, .team-member:hover {
    transform: translateY(-5px); /* Consistent lift effect */
}

/* Form container specific enhancements */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-title {
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
    font-size: 1.1rem;
}

.form-control {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: #39DEFC;
    box-shadow: 0 0 0 3px rgba(57, 222, 252, 0.2);
    background-color: #fff;
}

.form-control::placeholder {
    color: #aaa;
}

/* Enhanced textarea styling */
textarea.form-control {
    min-height: 150px;
    resize: vertical;
    font-family: 'Roboto', sans-serif;
}

/* Enhanced select styling */
select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
    padding-right: 3rem;
}

/* Enhanced button styling */
.btn {
    display: inline-block;
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 4px 20px rgba(17, 136, 206, 0.3);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.btn:hover {
    background: linear-gradient(135deg, #1188CE, #39DEFC);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(17, 136, 206, 0.5);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn:hover::before {
    transform: translateX(100%);
}

/* Responsive form adjustments */
@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
        margin: 0 15px;
    }
    
    .form-title {
        font-size: 1.7rem;
    }
    
    .form-control {
        padding: 0.8rem;
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .form-container {
        padding: 1.2rem;
        margin: 0 10px;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-group label {
        font-size: 1rem;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
}

/* FAQ item specific enhancements */
.faq-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
}

/* Section enhancements */
.section {
    border-radius: 15px;
    padding: 40px 0; /* Reduced from 80px to 40px */
    margin: 30px 0; /* Reduced from 60px to 30px for better separation */
    transition: all 0.3s ease;
}

/* Guarantee section specific enhancements */
.guarantee {
    background: linear-gradient(135deg, rgba(57, 222, 252, 0.05), rgba(17, 136, 206, 0.05));
    border-radius: 15px;
    padding: 40px 0; /* Reduced from 80px to 40px */
    margin: 30px 0; /* Reduced from 60px to 30px */
}

/* Process section specific enhancements */
.process {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.7), rgba(248, 249, 250, 0.5));
    border-radius: 15px;
    padding: 40px 0; /* Reduced from 80px to 40px */
    margin: 30px 0; /* Reduced from 60px to 30px */
}

/* Stats section specific enhancements */
.stats {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5));
    border-radius: 15px;
    padding: 30px 0; /* Reduced from 60px to 30px */
    margin: 30px 0; /* Reduced from 60px to 30px */
}

/* About section specific enhancements */
.about-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5));
    padding: 20px; /* Reduced from 30px */
    margin: 30px 0; /* Reduced from 60px to 30px */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section {
        padding: 30px 0; /* Reduced from 60px */
        margin: 20px 0; /* Reduced from 50px */
    }
}

@media (max-width: 576px) {
    .section {
        padding: 25px 0; /* Reduced from 50px */
        margin: 15px 0; /* Reduced from 40px */
    }
    
    .about-content {
        margin: 20px 0; /* Reduced from 30px */
        padding: 15px; /* Reduced from 20px */
    }
}

/* Hero content specific enhancements */
.hero-content {
    backdrop-filter: blur(5px);
}

/* Emergency Help Button */
.emergency-help-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    background: linear-gradient(135deg, #ff4757, #c44569);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 20px rgba(255, 71, 87, 0.4);
    transition: all 0.3s ease;
    animation: pulse-emergency 2s infinite;
    cursor: pointer;
    font-family: 'Roboto', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 180px;
    justify-content: center;
}

.emergency-help-btn:hover {
    background: linear-gradient(135deg, #c44569, #ff4757);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 71, 87, 0.6);
    text-decoration: none;
    color: white;
}

.emergency-help-btn::before {
    content: '\1F6A8';
    font-size: 1.2em;
    animation: shake 1s infinite;
}

.emergency-help-btn .btn-text {
    font-size: 14px;
    font-weight: 600;
}

/* Emergency button pulse animation */
@keyframes pulse-emergency {
    0% {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.4), 0 0 0 0 rgba(255, 71, 87, 0.7);
    }
    70% {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.4), 0 0 0 10px rgba(255, 71, 87, 0);
    }
    100% {
        box-shadow: 0 4px 20px rgba(255, 71, 87, 0.4), 0 0 0 0 rgba(255, 71, 87, 0);
    }
}

/* Utility classes for inline styles */
.logo-img-footer {
    height: 80px; /* Increased from 50px to 80px */
    width: auto;
    margin-bottom: 15px;
    display: block;
    margin: 0;
    transition: transform 0.3s ease;
}

.logo-img-footer:hover {
    transform: scale(1.1);
}

.text-center {
    text-align: center;
}

.margin-top-30 {
    margin-top: 30px;
}

.text-light {
    color: var(--text-light);
}

.btn-emergency-mobile {
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Shake animation for emergency icon */
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}

/* Mobile responsive adjustments for emergency button */
@media (max-width: 768px) {
    .emergency-help-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 20px;
        font-size: 14px;
        min-width: 160px;
    }
    
    .emergency-help-btn .btn-text {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .emergency-help-btn {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 13px;
        min-width: 140px;
    }
    
    .emergency-help-btn .btn-text {
        font-size: 12px;
    }
}

/* Contact Form Specific Styles */
.contact-form-container {
    max-width: 650px;
    margin: 0 auto;
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(57, 222, 252, 0.03), rgba(17, 136, 206, 0.03));
    z-index: 0;
}

.contact-form-container h2 {
    text-align: center;
    margin-bottom: 1.8rem;
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 2.2rem;
    position: relative;
    z-index: 1;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-form {
    position: relative;
    z-index: 1;
}

.contact-form .form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.contact-form .form-group label {
    display: block;
    margin-bottom: 0.7rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.1rem;
    position: relative;
    z-index: 1;
}

.contact-form .form-control {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 1.5rem;
    border: 2px solid #e1e8ed;
    border-radius: 12px;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background-color: #ffffff;
    color: #333;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #39DEFC;
    box-shadow: 0 0 0 4px rgba(57, 222, 252, 0.25);
    background-color: #ffffff;
    transform: translateY(-2px);
}

.contact-form .form-control::placeholder {
    color: #95a5a6;
    font-weight: 300;
}

/* Form field floating label effect */
.contact-form .form-group {
    position: relative;
}

.contact-form .form-group input:focus + label,
.contact-form .form-group textarea:focus + label,
.contact-form .form-group select:focus + label {
    transform: translateY(-20px);
    font-size: 0.9rem;
    color: #39DEFC;
}

/* Enhanced textarea styling */
.contact-form textarea.form-control {
    min-height: 160px;
    resize: vertical;
    font-family: 'Roboto', sans-serif;
    padding: 1.2rem 1.2rem 1.2rem 1.5rem;
}

/* Enhanced select styling */
.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
    padding-right: 3.5rem;
}

/* Enhanced button styling */
.contact-form .btn {
    display: inline-block;
    background: linear-gradient(135deg, #39DEFC, #1188CE);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    box-shadow: 0 6px 20px rgba(17, 136, 206, 0.4);
    position: relative;
    overflow: hidden;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 15px;
    z-index: 1;
}

.contact-form .btn:hover {
    background: linear-gradient(135deg, #1188CE, #39DEFC);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(17, 136, 206, 0.5);
}

.contact-form .btn:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(17, 136, 206, 0.4);
}

.contact-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.contact-form .btn:hover::before {
    transform: translateX(100%);
}

/* Form field focus animations */
.contact-form .form-control {
    transition: all 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.contact-form .form-control:focus {
    transform: translateY(-2px);
}

/* Required field indicator */
.required {
    color: #e74c3c;
    font-weight: bold;
}

/* Responsive form adjustments */
@media (max-width: 992px) {
    .contact-form-container {
        padding: 2rem;
        margin: 0 20px;
        max-width: 600px;
    }
    
    .contact-form-container h2 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-form-container {
        padding: 1.8rem;
        margin: 0 15px;
        border-radius: 18px;
    }
    
    .contact-form-container h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-form .form-control {
        padding: 1rem 1rem 1rem 1.3rem;
        font-size: 1rem;
    }
    
    .contact-form .btn {
        padding: 14px 30px;
        font-size: 1.05rem;
    }
    
    .contact-form select.form-control {
        background-position: right 1rem center;
        background-size: 1rem;
        padding-right: 3rem;
    }
}

@media (max-width: 576px) {
    .contact-form-container {
        padding: 1.5rem;
        margin: 0 10px;
        border-radius: 16px;
    }
    
    .contact-form-container h2 {
        font-size: 1.6rem;
        margin-bottom: 1.3rem;
    }
    
    .contact-form .form-group label {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }
    
    .contact-form .form-control {
        padding: 0.9rem 0.9rem 0.9rem 1.2rem;
        font-size: 0.95rem;
    }
    
    .contact-form textarea.form-control {
        min-height: 140px;
    }
    
    .contact-form .btn {
        padding: 13px 25px;
        font-size: 1rem;
        letter-spacing: 1px;
    }
}
