* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgb(0 0 0 / 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}
.navbar {
    padding: 1rem 0;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.logo h2 {
    color: #2c5aa0;
    font-size: 1.8rem;
    font-weight: 700;
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}
.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}
.nav-link:hover,
.nav-link.active {
    color: #2c5aa0;
}
.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2c5aa0;
}
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}
.hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: #fff;
    padding: 150px 0 100px;
    text-align: center;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}
.btn-primary {
    background: #ff6b35;
    color: #fff;
}
.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}
.btn-secondary {
    background: #fff0;
    color: #fff;
    border: 2px solid #fff;
}
.btn-secondary:hover {
    background: #fff;
    color: #2c5aa0;
}
.services-preview {
    padding: 80px 0;
    background: #f8f9fa;
}
.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.service-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
    transition: transform 0.3s ease;
}
.service-card:hover {
    transform: translateY(-5px);
}
.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.service-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.why-choose {
    padding: 80px 0;
}
.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-text h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
}
.why-text ul {
    list-style: none;
}
.why-text li {
    padding: 0.5rem 0;
    font-size: 1.1rem;
    color: #555;
}
.why-image img {
    width: 100%;
    border-radius: 10px;
}
.contact-cta {
    background: #2c5aa0;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.contact-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}
.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}
.page-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: #fff;
    padding: 150px 0 80px;
    text-align: center;
}
.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}
.services-detail {
    padding: 80px 0;
}
.service-item {
    margin-bottom: 4rem;
}
.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.service-item.reverse .service-content {
    direction: rtl;
}
.service-item.reverse .service-text {
    direction: ltr;
}
.service-text h2 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-size: 2rem;
}
.service-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}
.service-text ul {
    list-style: none;
}
.service-text li {
    padding: 0.3rem 0;
    color: #666;
}
.service-text li::before {
    content: "✓ ";
    color: #ff6b35;
    font-weight: 700;
}
.service-image img {
    width: 100%;
    border-radius: 10px;
}
.service-areas {
    padding: 80px 0;
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}
.area-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
}
.area-card h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}
.area-card ul {
    list-style: none;
    columns: 2;
    column-gap: 1rem;
}
.area-card li {
    padding: 0.3rem 0;
    color: #555;
    break-inside: avoid;
}
.note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}
.coverage-info {
    margin-top: 4rem;
}
.coverage-info h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}
.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.coverage-item {
    text-align: center;
    padding: 2rem;
}
.coverage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.coverage-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}
.about-content {
    padding: 80px 0;
}
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}
.about-text h2 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-size: 2.2rem;
}
.about-text p {
    margin-bottom: 1.5rem;
    color: #555;
    font-size: 1.1rem;
}
.about-image img {
    width: 100%;
    border-radius: 10px;
}
.values-section {
    margin-bottom: 4rem;
}
.values-section h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.value-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}
.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}
.value-card h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}
.stats-section {
    background: #2c5aa0;
    color: #fff;
    padding: 4rem 2rem;
    border-radius: 15px;
    margin-bottom: 4rem;
}
.stats-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}
.team-section h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}
.team-section p {
    color: #555;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
.team-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.team-feature {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}
.team-feature h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}
.contact-section {
    padding: 80px 0;
}
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}
.contact-info h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}
.contact-icon {
    font-size: 1.5rem;
    margin-top: 0.2rem;
}
.contact-details h3 {
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}
.contact-details a {
    color: #555;
    text-decoration: none;
}
.contact-details a:hover {
    color: #2c5aa0;
}
.contact-form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}
.contact-form h2 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    font-size: 2.2rem;
}
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}
.quick-contact {
    background: #f8f9fa;
    padding: 60px 0;
}
.quick-contact h2 {
    text-align: center;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}
.quick-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}
.quick-item {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgb(0 0 0 / 0.1);
}
.quick-item h3 {
    color: #2c5aa0;
    margin-bottom: 1rem;
}
.quick-item p {
    color: #555;
    margin-bottom: 1.5rem;
}
.footer {
    background: #1e3d72;
    color: #fff;
    padding: 60px 0 20px;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ff6b35;
}
.footer-section ul {
    list-style: none;
}
.footer-section ul li {
    padding: 0.3rem 0;
}
.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section a:hover {
    color: #ff6b35;
}
.footer-bottom {
    border-top: 1px solid #2c5aa0;
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgb(0 0 0 / 0.05);
        padding: 2rem 0;
    }
    .nav-menu.active {
        left: 0;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .why-content,
    .service-content,
    .about-intro,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .service-item.reverse .service-content {
        direction: ltr;
    }
    .area-card ul {
        columns: 1;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .services-preview h2,
    .values-section h2,
    .stats-section h2,
    .coverage-info h2,
    .quick-contact h2 {
        font-size: 2rem;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    .hero {
        padding: 120px 0 80px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .services-grid,
    .values-grid,
    .coverage-grid,
    .quick-contact-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .service-card,
    .value-card,
    .quick-item {
        padding: 1.5rem;
    }
    .contact-form {
        padding: 1.5rem;
    }
}

.bottom-navbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #fff;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    box-shadow: 0 -2px 10px rgb(0 0 0 / 0.05);
    z-index: 9999;
}
.bottom-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.bottom-link i {
    font-size: 18px;
}
.bottom-link.whatsapp {
    color: #25d366;
    animation: pulseWhatsApp 1.5s infinite;
}
.bottom-link.phone {
    color: #007bff;
    animation: pulsePhone 1.5s infinite;
}
.divider {
    width: 1px;
    height: 25px;
    background: #ddd;
}
body {
    padding-bottom: 70px;
}
@keyframes pulseWhatsApp {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        color: #128c7e;
    }
    100% {
        transform: scale(1);
    }
}
@keyframes pulsePhone {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
        color: #0056b3;
    }
    100% {
        transform: scale(1);
    }
}
