/* Modern UI Enhancements - Glassmorphism & Advanced Effects */

/* Modern Glassmorphism Header */
.header {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Modern Hero with Animated Background */
.hero {
    background: linear-gradient(135deg, 
        #667eea 0%, 
        #764ba2 25%, 
        #f093fb 50%, 
        #f5576c 75%, 
        #4facfe 100%);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 80vh;
    width: 100%;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/geometric-bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: 1;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Enhanced Hero Content with Modern Animations */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-text {
    opacity: 0;
    transform: translateY(30px);
    animation: heroTextFadeIn 1s ease-out 0.3s forwards;
    width: 100%;
    max-width: 1200px;
    text-align: center;
}

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

/* Modern Hero Title with Typing Animation */
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #ffffff, #f8fafc, #ffffff);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShine 3s ease-in-out infinite;
    line-height: 1.2;
    letter-spacing: -0.02em;
    max-width: 100%;
    word-wrap: break-word;
}

@keyframes titleShine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Animated Hero Subtitle */
.hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    animation: subtitleSlideIn 1s ease-out 0.6s forwards;
    font-weight: 300;
    letter-spacing: 0.5px;
    line-height: 1.4;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
}

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

/* Enhanced Hero Features with Staggered Animation */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    max-width: 1000px;
    width: 100%;
}

.hero-feature {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
    animation: featurePopIn 0.8s ease-out forwards;
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.hero-feature:nth-child(1) { animation-delay: 0.9s; }
.hero-feature:nth-child(2) { animation-delay: 1.1s; }
.hero-feature:nth-child(3) { animation-delay: 1.3s; }

@keyframes featurePopIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Modern Glass Card with Enhanced Effects */
.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 2.5rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.6s ease;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.15),
        0 15px 35px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.glass-card i {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    display: block;
    transition: all 0.3s ease;
}

.glass-card:hover i {
    transform: scale(1.2) rotate(5deg);
    color: #fbbf24;
}

.glass-card span {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.3;
    word-wrap: break-word;
}

/* Enhanced Hero Actions with Modern Buttons */
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: actionsSlideUp 1s ease-out 1.5s forwards;
    max-width: 600px;
    width: 100%;
}

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

/* Modern Morphing Buttons */
.morph-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    border-radius: 50px;
    padding: 1.2rem 3rem;
    color: #ffffff;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(102, 126, 234, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-width: 200px;
    justify-content: center;
}

.morph-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent);
    transition: left 0.6s ease;
}

.morph-btn:hover::before {
    left: 100%;
}

.morph-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
}

.morph-btn i {
    font-size: 1.3rem;
    transition: transform 0.3s ease;
}

.morph-btn:hover i {
    transform: scale(1.2);
}

/* Secondary Button Style */
.hero-btn-secondary {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    box-shadow: 
        0 10px 30px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-btn-secondary:hover {
    box-shadow: 
        0 20px 40px rgba(16, 185, 129, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.1);
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

/* Floating Particles Animation */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Modern Content Section */
.content-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.content-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Modern Main Content */
.main-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 50px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2, #f093fb, #f5576c);
    border-radius: 25px 25px 0 0;
}

.main-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.main-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

.main-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #334155;
    margin: 2.5rem 0 1.5rem 0;
    position: relative;
    padding-left: 20px;
}

.main-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 25px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 2px;
}

.main-content h4 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #475569;
    margin: 2rem 0 1rem 0;
    position: relative;
}

.main-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.main-content ul, .main-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.main-content li {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 0.8rem;
    position: relative;
}

.main-content ul li::before {
    content: '✓';
    position: absolute;
    left: -1.5rem;
    color: #10b981;
    font-weight: bold;
    font-size: 1.2rem;
}

.main-content ol li {
    counter-increment: list-counter;
}

.main-content ol li::before {
    content: counter(list-counter);
    position: absolute;
    left: -2rem;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: bold;
}

/* Modern Contact Info Section */
.contact-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 30px;
    margin: 3rem 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.3;
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.contact-item i {
    font-size: 1.3rem;
    color: #fbbf24;
    width: 25px;
    text-align: center;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #fbbf24;
}

/* Modern CTA Section */
.cta-section {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cta-pattern" width="30" height="30" patternUnits="userSpaceOnUse"><path d="M15 15 L25 15 L20 25 Z" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23cta-pattern)"/></svg>');
    opacity: 0.2;
}

.cta-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-btn {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 1rem 2.5rem;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.cta-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Modern Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.sidebar-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 20px 20px 0 0;
}

.sidebar-widget h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    position: relative;
}

.sidebar-widget h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 20px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-btn.phone {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.contact-btn.phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.contact-btn.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.contact-btn.whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

/* Service Areas List */
.service-areas-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #667eea #f1f5f9;
}

.service-areas-list::-webkit-scrollbar {
    width: 6px;
}

.service-areas-list::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 3px;
}

.service-areas-list::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 3px;
}

.service-areas-list::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #764ba2, #667eea);
}

.service-areas-list li {
    margin-bottom: 8px;
    position: relative;
}

.service-areas-list a {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 10px;
    text-decoration: none;
    color: #475569;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.service-areas-list a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(102, 126, 234, 0.1), 
        transparent);
    transition: left 0.5s ease;
}

.service-areas-list a:hover::before {
    left: 100%;
}

.service-areas-list a:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    transform: translateX(3px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    border-color: rgba(102, 126, 234, 0.3);
}

.service-areas-list a:active {
    transform: translateX(3px) scale(0.98);
}

/* Responsive adjustments for service areas list */
@media (max-width: 768px) {
    .service-areas-list {
        max-height: 300px;
    }
    
    .service-areas-list a {
        padding: 8px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-areas-list {
        max-height: 250px;
    }
    
    .service-areas-list a {
        padding: 6px 8px;
        font-size: 0.85rem;
    }
}

/* Features List */
.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    color: #475569;
    font-weight: 500;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list i {
    color: #10b981;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Responsive Design for Hero */
@media (max-width: 1200px) {
    .hero-content {
        max-width: 1200px;
        padding: 0 30px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.6rem;
        max-width: 700px;
    }
    
    .hero-features {
        gap: 2rem;
        max-width: 900px;
    }
    
    .glass-card {
        padding: 1.8rem 2rem;
        min-width: 220px;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr 300px;
        gap: 40px;
        padding: 0 30px;
    }
    
    .main-content {
        padding: 40px;
    }
    
    .sidebar-widget {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 60px 0;
    }
    
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        max-width: 100%;
        margin-bottom: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        max-width: 100%;
    }
    
    .hero-feature {
        min-width: 280px;
        max-width: 100%;
    }
    
    .glass-card {
        padding: 1.5rem 2rem;
        min-width: 250px;
    }
    
    .glass-card i {
        font-size: 2.5rem;
    }
    
    .glass-card span {
        font-size: 1.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        max-width: 100%;
    }
    
    .morph-btn {
        width: 100%;
        max-width: 300px;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .main-content {
        padding: 30px;
    }
    
    .main-content h2 {
        font-size: 2rem;
    }
    
    .main-content h3 {
        font-size: 1.5rem;
    }
    
    .main-content h4 {
        font-size: 1.2rem;
    }
    
    .sidebar-widget {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
        padding: 40px 0;
    }
    
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-features {
        gap: 1rem;
    }
    
    .hero-feature {
        min-width: 200px;
    }
    
    .glass-card {
        padding: 1.2rem 1.5rem;
        min-width: 200px;
    }
    
    .glass-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .glass-card span {
        font-size: 1rem;
    }
    
    .morph-btn {
        max-width: 250px;
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }
    
    .morph-btn i {
        font-size: 1.1rem;
    }
    
    .content-wrapper {
        padding: 0 15px;
    }
    
    .main-content {
        padding: 20px;
    }
    
    .main-content h2 {
        font-size: 1.8rem;
    }
    
    .main-content h3 {
        font-size: 1.3rem;
    }
    
    .main-content h4 {
        font-size: 1.1rem;
    }
    
    .main-content p {
        font-size: 1rem;
    }
    
    .sidebar-widget {
        padding: 15px;
    }
}

/* Mobile-First Responsive Design for All Pages */
@media (max-width: 375px) {
    /* Extra Small Mobile Devices */
    .hero {
        min-height: 50vh;
        padding: 30px 0;
    }
    
    .hero-content {
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        gap: 0.8rem;
        margin-bottom: 2rem;
    }
    
    .hero-feature {
        min-width: 180px;
        max-width: 100%;
    }
    
    .glass-card {
        padding: 1rem 1.2rem;
        min-width: 180px;
        border-radius: 15px;
    }
    
    .glass-card i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .glass-card span {
        font-size: 0.9rem;
        line-height: 1.2;
    }
    
    .hero-actions {
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .morph-btn {
        max-width: 220px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 40px;
        min-width: 180px;
    }
    
    .morph-btn i {
        font-size: 1rem;
    }
    
    .content-wrapper {
        padding: 0 10px;
    }
    
    .main-content {
        padding: 15px;
        border-radius: 15px;
    }
    
    .main-content h2 {
        font-size: 1.6rem;
    }
    
    .main-content h3 {
        font-size: 1.2rem;
    }
    
    .main-content h4 {
        font-size: 1rem;
    }
    
    .main-content p {
        font-size: 0.9rem;
    }
    
    .sidebar-widget {
        padding: 12px;
        border-radius: 15px;
    }
}

/* General Page Responsive Layout */
@media (max-width: 768px) {
    /* Main Container Responsive */
    .container {
        width: 100%;
        max-width: 100%;
        padding: 0 15px;
        margin: 0 auto;
        box-sizing: border-box;
    }
    
    /* Header Responsive */
    .header {
        padding: 10px 0;
    }
    
    .header .container {
        flex-direction: column;
        gap: 10px;
    }
    
    /* Navigation Responsive */
    .nav {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav ul {
        display: flex;
        flex-wrap: nowrap;
        gap: 15px;
        padding: 0 10px;
    }
    
    .nav li {
        white-space: nowrap;
    }
    
    /* Main Content Responsive */
    .main-content {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
        box-sizing: border-box;
    }
    
    /* Sidebar Responsive */
    .sidebar {
        width: 100%;
        max-width: 100%;
        margin: 20px 0;
        padding: 20px 15px;
        box-sizing: border-box;
    }
    
    /* Footer Responsive */
    .footer {
        padding: 30px 15px;
    }
    
    .footer .container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    /* Contact Form Responsive */
    .contact-form {
        width: 100%;
        max-width: 100%;
        padding: 20px 15px;
        box-sizing: border-box;
    }
    
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    /* Service Cards Responsive */
    .service-cards {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .service-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        box-sizing: border-box;
    }
    
    /* Floating Contact Buttons Responsive */
    .floating-contact {
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 1000;
    }
    
    .floating-contact .btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Table Responsive */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }
    
    table {
        min-width: 600px;
        width: 100%;
    }
    
    /* Image Responsive */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    /* Text Responsive */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    p, li, span, div {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

@media (max-width: 480px) {
    /* Extra Mobile Optimizations */
    .container {
        padding: 0 10px;
    }
    
    .main-content {
        padding: 15px 10px;
    }
    
    .sidebar {
        padding: 15px 10px;
    }
    
    .contact-form {
        padding: 15px 10px;
    }
    
    .floating-contact {
        bottom: 15px;
        right: 15px;
    }
    
    .floating-contact .btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    /* Typography Adjustments */
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.9rem; }
    
    p { font-size: 0.9rem; line-height: 1.4; }
    
    /* Button Adjustments */
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    /* Card Adjustments */
    .card {
        padding: 15px;
        margin-bottom: 15px;
        border-radius: 10px;
    }
}

@media (max-width: 375px) {
    /* Ultra Small Mobile Devices */
    .container {
        padding: 0 8px;
    }
    
    .main-content {
        padding: 12px 8px;
    }
    
    .sidebar {
        padding: 12px 8px;
    }
    
    .contact-form {
        padding: 12px 8px;
    }
    
    .floating-contact {
        bottom: 10px;
        right: 10px;
    }
    
    .floating-contact .btn {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
    }
    
    /* Ultra Small Typography */
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    h4 { font-size: 1rem; }
    h5 { font-size: 0.9rem; }
    h6 { font-size: 0.8rem; }
    
    p { font-size: 0.85rem; line-height: 1.3; }
    
    /* Ultra Small Buttons */
    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        border-radius: 6px;
    }
    
    /* Ultra Small Cards */
    .card {
        padding: 12px;
        margin-bottom: 12px;
        border-radius: 8px;
    }
}

/* Landscape Mobile Optimization */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        min-height: 50vh;
        padding: 20px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-features {
        flex-direction: row;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-feature {
        min-width: 150px;
        max-width: 200px;
    }
    
    .glass-card {
        padding: 1rem 1.5rem;
        min-width: 150px;
    }
    
    .glass-card i {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .glass-card span {
        font-size: 0.9rem;
    }
    
    .hero-actions {
        flex-direction: row;
        gap: 1rem;
    }
    
    .morph-btn {
        max-width: 180px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Print Styles */
@media print {
    .hero {
        background: none !important;
        color: #000 !important;
        min-height: auto;
        padding: 20px 0;
    }
    
    .hero-title {
        color: #000 !important;
        background: none !important;
        -webkit-text-fill-color: #000 !important;
    }
    
    .glass-card {
        background: #f5f5f5 !important;
        color: #000 !important;
        border: 1px solid #ddd !important;
    }
    
    .morph-btn {
        background: #333 !important;
        color: #fff !important;
    }
    
    .floating-contact {
        display: none !important;
    }
    
    .particles-container {
        display: none !important;
    }
}

/* Modern Contact Section Styles */
.contact {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="contact-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23contact-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.contact .container {
    position: relative;
    z-index: 2;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.contact-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Info Cards */
.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.contact-card:hover::before {
    left: 100%;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

.contact-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.contact-card p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-link:hover {
    color: #f8fafc;
    transform: scale(1.05);
}

.contact-address,
.contact-hours {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Contact Main Content */
.contact-main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Contact Form Section */
.contact-form-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 25px;
    z-index: -1;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.form-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #667eea;
    color: #ffffff;
}

.submit-btn {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.submit-btn:hover::before {
    left: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.6);
}

/* Contact Map Section */
.contact-map-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.map-header {
    text-align: center;
    margin-bottom: 30px;
}

.map-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.map-header p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Benefits */
.contact-benefits {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px;
}

.contact-benefits h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #ffffff;
    flex-shrink: 0;
}

.benefit-item span {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

/* Responsive Design for Contact Section */
@media (max-width: 1200px) {
    .contact-main-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .contact-form-section,
    .contact-map-section {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-card {
        padding: 25px 15px;
    }
    
    .contact-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-form-section,
    .contact-map-section,
    .contact-benefits {
        padding: 25px 15px;
    }
    
    .map-container {
        height: 250px;
    }
}

/* Service Areas Section - Banner Style */
.service-areas {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0;
    position: relative;
}

.service-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="service-pattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23667eea" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23service-pattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.service-areas .container {
    position: relative;
    z-index: 2;
}

.service-areas-header {
    text-align: center;
    margin-bottom: 60px;
}

.service-areas-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.service-areas-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Areas Grid - 4 Columns Banner Style */
.service-areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.service-area-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    border: 2px solid transparent;
}

.service-area-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.service-area-banner:hover::before {
    left: 100%;
}

.service-area-banner:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.service-area-banner h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.service-area-banner span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* About Us Section - Simple & Modern */
.about-us {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    padding: 80px 0;
    position: relative;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-text h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.about-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 40px;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
}

.highlight-item i {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1rem;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.highlight-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-main {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .about-us {
        padding: 60px 0;
    }
    
    .about-header h2 {
        font-size: 2.5rem;
    }
    
    .about-main {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .about-text h3 {
        font-size: 2rem;
    }
    
    .about-highlights {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-header h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.8rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-item {
        padding: 30px 15px;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Contact Section - Simple & Clean */
.contact {
    background: #ffffff;
    padding: 80px 0;
    position: relative;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #1e293b;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #f8fafc;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #ffffff;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 5px;
}

.contact-details a,
.contact-details span {
    font-size: 1rem;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #667eea;
}

/* Contact Form */
.contact-form {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    color: #1e293b;
    background: #ffffff;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #94a3b8;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form select {
    cursor: pointer;
}

.contact-form select option {
    background: #ffffff;
    color: #1e293b;
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form button {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    border: none;
    padding: 18px 40px;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.contact-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .contact-main {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .contact {
        padding: 60px 0;
    }
    
    .contact-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-main {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .contact-item {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-header h2 {
        font-size: 2rem;
    }
    
    .contact-form {
        padding: 25px 15px;
    }
    
    .contact-item {
        padding: 15px;
        gap: 15px;
    }
    
    .contact-item i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}


