/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background: #0f1115;
    color: #ffffff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 50px;
    position: relative;
    color: #ffffff;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #00bcd4;
    margin: 15px auto 0;
}

/* Navigation Bar */
.navbar {
    background: rgba(15, 17, 21, 0.95);
    backdrop-filter: blur(15px);
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Text Styles */
.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
    line-height: 1.2;
}

.logo-text span {
    color: #00bcd4;
    font-weight: 600;
}

.logo img {
    height: 90px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu li a:hover {
    color: #00bcd4;
}

.nav-phone {
    color: white;
    font-weight: bold;
}

.nav-phone i {
    color: #00bcd4;
    margin-right: 8px;
}

.hamburger {
    display: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
}

.hero-content h1 {
    color: #00bcd4;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-content h2 {
    color: white;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-content p {
    color: #d0d0d0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-call {
    background: #00bcd4;
    color: white;
    border-radius: 6px;
    padding: 15px 35px;
}

.btn-call:hover {
    background: #0097a7;
    transform: translateY(-3px);
}

.btn-whatsapp {
    border: 2px solid #25D366;
    color: #25D366;
    background: transparent;
    border-radius: 6px;
    padding: 15px 35px;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: white;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #121418;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #1a1d24;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 50px;
    color: #00bcd4;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #ffffff;
}

.service-card ul {
    list-style: none;
    text-align: left;
}

.service-card ul li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
    color: #d0d0d0;
}

.service-card ul li::before {
    content: '-';
    color: #00bcd4;
    position: absolute;
    left: 0;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #121418;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-content h2 {
    color: #00bcd4;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.about-content h3 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: #d0d0d0;
}

.btn-about {
    background: #1a1a2e;
    color: white;
    padding: 10px 25px;
}

.btn-about:hover {
    background: #00bcd4;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: #121418;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    background: rgba(0, 188, 212, 0.9);
    padding: 15px;
    text-align: center;
    transition: bottom 0.3s;
}

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay span {
    color: white;
    font-weight: bold;
}

.gallery-btn {
    text-align: center;
    margin-top: 40px;
}

.btn-gallery {
    background: transparent;
    border: 2px solid #00bcd4;
    color: #00bcd4;
}

.btn-gallery:hover {
    background: #00bcd4;
    color: white;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #121418;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.contact-card {
    background: #1a1d24;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
    color: white;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-card i {
    font-size: 40px;
    color: #00bcd4;
    margin-bottom: 15px;
}

.contact-card h3 {
    margin-bottom: 10px;
    color: #ffffff;
}

.contact-card p {
    color: #d0d0d0;
}

.whatsapp-chat {
    display: inline-block;
    margin-top: 10px;
    color: #25D366;
    text-decoration: none;
    font-weight: bold;
}

.business-hours {
    background: #1a1d24;
    padding: 30px;
    border-radius: 10px;
    color: white;
}

.business-hours h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.business-hours ul {
    list-style: none;
    margin-bottom: 20px;
}

.business-hours ul li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.business-hours ul li span {
    font-weight: bold;
    color: #00bcd4;
}

.map-container {
    margin-top: 20px;
    border-radius: 10px;
    overflow: hidden;
}

/* Footer */
footer {
    background: #0f1115;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #00bcd4;
}

.footer-logo p {
    color: #aaa;
}

.footer-links h4,
.footer-contact-info h4 {
    margin-bottom: 20px;
    color: #00bcd4;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links ul li a:hover {
    color: #00bcd4;
}

.footer-contact-info p {
    margin-bottom: 10px;
    color: #aaa;
}

.footer-contact-info i {
    color: #00bcd4;
    margin-right: 10px;
    width: 25px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    color: #aaa;
    font-size: 0.9rem;
}

/* Floating WhatsApp Button */
.float-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    padding: 15px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
    z-index: 100;
}

.float-whatsapp:hover {
    transform: scale(1.05);
    background: #1ebe5d;
}

.float-whatsapp i {
    font-size: 24px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 17, 21, 0.95);
        backdrop-filter: blur(15px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-phone {
        display: none;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo img {
        height: 60px;
    }

    .hero-content h2 {
        font-size: 1.8rem;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .float-whatsapp span {
        display: none;
    }

    .float-whatsapp {
        padding: 12px;
        border-radius: 50%;
    }

    .float-whatsapp i {
        margin: 0;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-call,
    .btn-whatsapp {
        padding: 12px 25px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card i {
        font-size: 40px;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }
}
