/* css/style.css - Complete stylesheet */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #1e293b;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo span {
    font-size: 0.8rem;
    display: block;
    color: #64748b;
    -webkit-text-fill-color: #64748b;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s;
    list-style: none;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 0.5rem 1rem;
    color: #1e293b;
}

.dropdown-menu a:hover {
    background: #f1f5f9;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #1e293b;
}

/* Buttons */
.btn-primary {
    background: #2563eb;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
}

.btn-outline {
    border: 2px solid #2563eb;
    background: transparent;
    color: #2563eb;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.2s;
}

.btn-outline:hover {
    background: #2563eb;
    color: white;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
}

.btn-outline-light:hover {
    background: white;
    color: #1e293b;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 5rem 0;
    background: linear-gradient(145deg, #ffffff, #f8fafc);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-highlight {
    color: #2563eb;
    border-bottom: 4px solid #bfdbfe;
}

.hero p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    display: block;
}

.stat-label {
    color: #64748b;
    font-size: 0.9rem;
}

.hero-image {
    background: linear-gradient(135deg, #2563eb10, #7c3aed10);
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    border: 1px solid #2563eb20;
}

.hero-image-content i {
    font-size: 4rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Trust Badges */
.trust-badges {
    padding: 2rem 0;
    background: white;
}

.badges-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.badge {
    background: #f8fafc;
    padding: 0.5rem 1.5rem;
    border-radius: 40px;
    font-weight: 500;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.2rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #2563eb40;
}

.card-icon {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list i {
    color: #2563eb;
    font-size: 0.9rem;
}

.card-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: transform 0.2s;
}

.card-link:hover {
    transform: translateX(5px);
}

/* Why Choose Us */
.why-choose {
    padding: 5rem 0;
    background: #f8fafc;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: #eef2ff;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: #2563eb;
}

.why-card h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Page Header */
.page-header {
    background: linear-gradient(145deg, #f8fafc, #e2e8f0);
    padding: 3rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.breadcrumb {
    color: #64748b;
}

.breadcrumb a {
    color: #2563eb;
    text-decoration: none;
}

/* Service Detail */
.service-detail {
    padding: 4rem 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.feature-highlights {
    margin: 3rem 0;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.highlight-item i {
    font-size: 1.8rem;
    color: #2563eb;
    min-width: 50px;
}

.highlight-item h4 {
    margin-bottom: 0.3rem;
}

/* Sidebar */
.sidebar-card {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 20px;
    margin-bottom: 1.5rem;
}

.sidebar-card h4 {
    margin-bottom: 1rem;
}

.sidebar-card ul {
    list-style: none;
}

.sidebar-card li {
    margin-bottom: 0.8rem;
}

.sidebar-card i {
    color: #2563eb;
    margin-right: 0.5rem;
}

/* Contact Section */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info h2,
.contact-form-container h2 {
    margin-bottom: 1rem;
}

.contact-description,
.form-description {
    color: #475569;
    margin-bottom: 2rem;
}

.info-card {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
}

.info-card i {
    font-size: 1.5rem;
    color: #2563eb;
    min-width: 40px;
}

.info-card h4 {
    margin-bottom: 0.3rem;
}

.info-card a {
    color: #1e293b;
    text-decoration: none;
}

.info-card a:hover {
    color: #2563eb;
}

.map-container {
    margin-top: 2rem;
}

.map-container iframe {
    width: 100%;
    height: 250px;
    border-radius: 12px;
}

/* Contact Form */
.contact-form-container {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 30px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
}

/* Contact Info Bar */
.contact-info-bar {
    background: #0f172a;
    color: white;
    padding: 2rem 0;
}

.info-bar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-bar-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-bar-item i {
    font-size: 2rem;
    color: #2563eb;
}

.info-bar-item h4 {
    margin-bottom: 0.2rem;
}

.info-bar-item p {
    color: #94a3b8;
}

/* About Page */
.about-section {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lead {
    font-size: 1.3rem;
    color: #2563eb;
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-box {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.about-image .image-card {
    background: linear-gradient(135deg, #2563eb10, #7c3aed10);
    padding: 3rem;
    border-radius: 40px;
    text-align: center;
}

.about-image i {
    font-size: 4rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Expertise Grid */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.expertise-item {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 20px;
}

.expertise-item i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.footer-about {
    color: #94a3b8;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: white;
    background: #1e293b;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}

.footer-social a:hover {
    background: #2563eb;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col ul a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: #2563eb;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #94a3b8;
}

.contact-info i {
    color: #2563eb;
    min-width: 20px;
}

.footer-bottom {
    border-top: 1px solid #1e293b;
    padding-top: 2rem;
    text-align: center;
    color: #64748b;
}

/* Flash Messages */
.flash-message {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 1rem 2rem;
    border-radius: 10px;
    color: white;
    z-index: 1000;
    animation: slideIn 0.3s ease;
}

.flash-success {
    background: #10b981;
}

.flash-error {
    background: #ef4444;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 5rem 2rem;
        transition: right 0.3s;
        z-index: 1000;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .mobile-overlay.active {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .hero-grid,
    .about-grid,
    .service-detail-grid,
    .contact-grid,
    .footer-grid,
    .why-grid,
    .expertise-grid,
    .info-bar-grid {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .badges-grid {
        justify-content: center;
    }
    
    .info-bar-item {
        flex-direction: column;
        text-align: center;
    }
}