/* Base Styles */
:root {
    --primary-color: #0056b3;
    --secondary-color: #004494;
    --accent-color: #ff9800;
    --text-color: #333;
    --light-text: #fff;
    --light-bg: #f8f9fa;
    --dark-bg: #343a40;
    --border-color: #dee2e6;
    --success-color: #28a745;
    --whatsapp-color: #25D366;
    --call-color: #FF5722;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

.container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    max-width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.5rem;
    font-weight: 700;
    line-height: 1.2;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

.section-title {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent-color);
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-text);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--light-text);
}

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--light-text);
}

.btn-secondary:hover {
    background-color: #e68a00;
    color: var(--light-text);
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    height: 120px;
}

.mobile-phone {
    display: none;
}

.mobile-phone a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    color: #fff;
    background-color: #FF5722;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 120px;
    width: auto;
}

.phone-number a {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold;
    color: #fff !important;
    background-color: #FF5722;
    padding: 8px 12px;
    border-radius: 4px;
}

.menu-toggle {
    display: block;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-color);
}

.nav-menu {
    display: none;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu.active {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.nav-menu li {
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    display: block;
    padding: 0.7rem;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--accent-color);
    background-color: rgba(0, 0, 0, 0.05);
    font-weight: bold;
}

/* Hero Section */
.hero {
    color: var(--light-text);
    padding: 0;
    margin: 140px 0 0 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: #f8f9fa;
    height: 600px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 600px;
    object-fit: fill;
    display: block;
}

.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.hero-content {
    width: 100%;
    margin: 0 auto;
}

.empty-hero {
    height: 600px;
    background-color: transparent;
    box-shadow: none;
    padding: 0;
    margin: 0;
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero .btn {
    padding: 0.9rem 2rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    padding: 2rem 0 4rem;
    background-color: var(--light-bg);
    margin-top: 0;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* New Service Cards */
.service-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-card-new {
    background-color: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image-new {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-image-new img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-new:hover .service-image-new img {
    transform: scale(1.05);
}

.service-card-new h3 {
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    color: var(--primary-color);
    font-size: 1.3rem;
}

.service-card-new p {
    margin: 0 1.5rem 2rem 1.5rem;
    flex-grow: 1;
    text-align: left;
    line-height: 1.6;
}

.service-btn-new {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: center;
    margin-bottom: 1.5rem;
}

.service-btn-new:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Modern Service Cards */
.modern-service-card {
    background-color: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.modern-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.modern-service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modern-service-card:hover .service-overlay {
    opacity: 1;
}

.service-icon {
    font-size: 3rem;
    color: #fff;
    background-color: var(--primary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.service-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.service-content p {
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.service-btn:hover {
    background-color: var(--secondary-color);
    color: #fff;
    transform: translateY(-3px);
}

/* Features Section */
.features {
    padding: 4rem 0;
    background-color: #fff;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    background-color: var(--light-bg);
    border-radius: 0.8rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.feature-card p {
    line-height: 1.6;
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: 4rem 0;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-text {
    flex: 1;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    color: var(--success-color);
}

/* Testimonials Section */
.testimonials {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.testimonial-slider {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.testimonial {
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    text-align: right;
}

/* Map Section */
.map-section {
    padding: 4rem 0;
    background-color: var(--light-bg);
}

.map-container {
    margin-bottom: 1.5rem;
}

.map-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
}

.map-info p {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.map-info i {
    color: var(--primary-color);
}

.map-info a {
    color: var(--primary-color);
    font-weight: 600;
}

.map-info a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info {
    flex: 1;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

.contact-form {
    flex: 1;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    font-family: inherit;
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0, 86, 179, 0.25);
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--light-text);
    padding: 3rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--light-text);
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
    color: var(--light-text);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
    color: var(--light-text);
}

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Floating WhatsApp and Call Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.floating-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.floating-button:hover {
    transform: scale(1.1);
}

.whatsapp-button {
    background-color: var(--whatsapp-color);
    color: white;
}

.call-button {
    background-color: var(--call-color);
    color: white;
}

.floating-button i {
    font-size: 24px;
}

/* Media Queries for Responsive Design */
@media (max-width: 575px) {
    .logo-img {
        height: 80px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .empty-hero {
        height: 250px;
        margin-bottom: 0;
    }
    
    .hero {
        margin-top: 160px;
        margin-bottom: 0;
        height: 250px;
    }
    
    .services {
        padding-top: 1rem;
        margin-top: -20px;
    }
    
    .mobile-phone {
        display: block;
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
    
    .mobile-phone a {
        display: inline-flex;
        justify-content: center;
    }
    
    header .container {
        height: auto;
        padding: 1.5rem;
    }
    
    .logo {
        order: 1;
        width: 80%;
    }
    
    nav {
        order: 2;
        width: 20%;
        text-align: right;
    }
    
    .phone-number {
        display: none;
    }
}
    
    .phone-number {
        margin-top: 10px;
    }
    
    .phone-number a {
        justify-content: center;
    }
}

/* Extra small devices - Portrait phones */
@media (max-width: 320px) {
    .empty-hero {
        height: 180px;
    }
}

/* Small devices - Landscape phones */
@media (min-width: 321px) and (max-width: 480px) {
    .empty-hero {
        height: 220px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .hero {
        margin-top: 120px;
    }
    
    .services {
        padding-top: 0;
    }
    .container {
        max-width: 540px;
    }
    
    .cta-buttons {
        flex-direction: row;
    }
    
    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-phone {
        display: block;
        order: 3;
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
    
    .mobile-phone a {
        display: inline-flex;
        justify-content: center;
    }
    
    header .container {
        height: auto;
    }
    
    .logo {
        order: 1;
        width: 80%;
    }
    
    nav {
        order: 2;
        width: 20%;
        text-align: right;
    }
    
    .phone-number {
        display: none;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
    
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-image {
        height: 200px;
    }
    
    .testimonial-slider {
        flex-direction: row;
    }
    
    .testimonial {
        flex: 1;
    }
    
    .contact-content {
        flex-direction: row;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mobile-phone {
        display: none;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        gap: 0.5rem;
    }
    
    .nav-menu li a {
        padding: 0.5rem 0.7rem;
        font-size: 0.9rem;
    }
    
    .phone-number a:hover {
        background-color: #e64a19;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }
    
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .service-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-menu li a {
        padding: 0.5rem 0.9rem;
        font-size: 1rem;
    }
}