/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #fff;
    background-color: #000;
}

/* Header and Navigation */
header {
    background-color: #000;
    box-shadow: 0 2px 5px rgba(255, 198, 26, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #FFC61A;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo h1 {
    color: #FFC61A;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.nav-links a:hover {
    color: #FFC61A;
    text-shadow: 0 0 10px rgba(255, 198, 26, 0.5);
}

/* Hero Section */
.hero {
    height: auto;
    min-height: 100vh;
    padding: 6rem 1rem 3rem;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #fff;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #FFC61A;
    color: #000;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background-color: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 198, 26, 0.3);
}

/* Services Section */
.services {
    padding: 5rem 1rem;
    background-color: #000;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #FFC61A;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.service-card {
    background: #000;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 198, 26, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #FFC61A;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: #FFC61A;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(255, 198, 26, 0.2);
}

.service-card h3 {
    color: #FFC61A;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.service-features li {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFC61A;
    font-weight: bold;
}

/* About Section */
.about {
    padding: 5rem 1rem;
    text-align: center;
    background: #000;
}

.about h2 {
    margin-bottom: 2rem;
    color: #FFC61A;
}

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

.about-content p {
    color: #fff;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #000;
    width: 100%;
    overflow-x: hidden;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-info {
    background: #000;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(255, 198, 26, 0.1);
    border: 2px solid #FFC61A;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.info-item i {
    font-size: 24px;
    color: #FFC61A;
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h3 {
    margin: 0 0 5px 0;
    font-size: 18px;
    color: #FFC61A;
}

.info-item p {
    margin: 0;
    color: #fff;
    line-height: 1.6;
}

.social-links {
    margin-top: 30px;
}

.social-links h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #FFC61A;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    border-radius: 50%;
    color: #FFC61A;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #FFC61A;
}

.social-icon:hover {
    background: #FFC61A;
    color: #000;
    transform: translateY(-3px);
}

.contact-form {
    background: #000;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(255, 198, 26, 0.1);
    border: 2px solid #FFC61A;
}

.contact-form h3 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #FFC61A;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #FFC61A;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #FFC61A;
    border-radius: 5px;
    font-size: 16px;
    background: #000;
    color: #fff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFC61A;
    box-shadow: 0 0 0 3px rgba(255, 198, 26, 0.2);
}

.submit-btn {
    background: #FFC61A;
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.submit-btn:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 198, 26, 0.3);
}

.map-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    color: #FFC61A;
}

.map-container {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(255, 198, 26, 0.1);
    border: 2px solid #FFC61A;
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        padding: 0 15px;
    }
    
    .map-section {
        padding: 0 15px;
    }
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 3rem 1rem 1rem;
    border-top: 2px solid #FFC61A;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: #FFC61A;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 198, 26, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Location Selector Styles */
.location-selector {
    background: rgba(0, 0, 0, 0.8);
    padding: 2.5rem;
    border-radius: 15px;
    margin: 2rem auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(255, 198, 26, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #FFC61A;
}

.location-input {
    margin-bottom: 2rem;
    position: relative;
}

.location-input label {
    display: block;
    color: #FFC61A;
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.location-select {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #FFC61A;
    border-radius: 10px;
    font-size: 1rem;
    background: #000;
    color: #fff;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFC61A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

.location-select:focus {
    border-color: #FFC61A;
    box-shadow: 0 0 0 3px rgba(255, 198, 26, 0.2);
}

.calculate-btn {
    width: 100%;
    padding: 1.2rem;
    background: #FFC61A;
    color: #000;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(255, 198, 26, 0.3);
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 198, 26, 0.4);
    background: #ffd700;
}

.price-result {
    margin-top: 2rem;
}

#buttons {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(255, 198, 26, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid #FFC61A;
}

#buttons p {
    color: #FFC61A;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#buttons a {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#buttons a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#whatsappLink {
    background: #25D366;
    color: white;
}

#whatsappLink:hover {
    background: #1FAD52;
    transform: translateY(-2px);
}

#buttons a:last-child {
    background: #FFC61A;
    color: #000;
}

#buttons a:last-child:hover {
    background: #ffd700;
    transform: translateY(-2px);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .location-selector {
        padding: 1.5rem;
    }
    
    #buttons {
        padding: 1.5rem;
    }
    
    #buttons a {
        display: block;
        margin: 10px 0;
        text-align: center;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 100px 20px;
    margin-bottom: 50px;
    width: 100%;
}

.page-header h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFC61A;
    text-align: center;
    width: 100%;
}

.page-header p {
    font-size: 1.2em;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* About Page Styles */
.about-content {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.about-text h2 {
    color: #FFC61A;
    margin-bottom: 20px;
    font-size: 1.8em;
}

.about-text p {
    margin-bottom: 30px;
    line-height: 1.6;
    color: #fff;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #fff;
}

.values-list i {
    color: #FFC61A;
    margin-right: 10px;
}

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

.stat-card {
    background: #000;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(255, 198, 26, 0.1);
    border: 2px solid #FFC61A;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card i {
    font-size: 2.5em;
    color: #FFC61A;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2em;
    color: #FFC61A;
    margin-bottom: 10px;
}

.stat-card p {
    color: #fff;
}

/* Contact Page Styles */
.contact-content {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    width: 100%;
}

.contact-info {
    background: #000;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 198, 26, 0.1);
    border: 2px solid #FFC61A;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.info-item i {
    font-size: 1.5em;
    color: #FFC61A;
    margin-right: 15px;
    margin-top: 5px;
}

.info-item h3 {
    color: #FFC61A;
    margin-bottom: 5px;
}

.info-item p {
    color: #fff;
}

.social-links {
    margin-top: 40px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFC61A;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #FFC61A;
}

.social-icon:hover {
    background: #FFC61A;
    color: #000;
    transform: translateY(-3px);
}

.contact-form {
    background: #000;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255, 198, 26, 0.1);
    border: 2px solid #FFC61A;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #FFC61A;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 2px solid #FFC61A;
    border-radius: 5px;
    font-size: 1em;
    background: #000;
    color: #fff;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: #FFC61A;
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.submit-btn:hover {
    background: #ffd700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 198, 26, 0.3);
}

.map-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 60px 20px;
    }

    .page-header h1 {
        font-size: 2em;
    }
}

/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #FFC61A;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

@media screen and (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(0, 0, 0, 0.95);
        padding: 2rem;
        box-shadow: 0 2px 5px rgba(255, 198, 26, 0.2);
        border-top: 2px solid #FFC61A;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links li {
        margin: 1.5rem 0;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 0.8rem;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(255, 198, 26, 0.1);
        transform: scale(1.05);
    }

    .nav-links a.active {
        color: #FFC61A;
        background: rgba(255, 198, 26, 0.1);
    }

    /* Hero Section Improvements */
    .hero-content {
        padding: 0 1rem;
    }

    .location-selector {
        margin: 1rem;
        padding: 1.5rem;
    }

    .location-select {
        font-size: 1rem;
        padding: 0.8rem;
    }

    /* Service Cards Improvements */
    .service-card {
        margin: 0 1rem;
        transition: transform 0.3s ease;
    }

    .service-card:active {
        transform: scale(0.98);
    }

    /* Contact Form Improvements */
    .contact-form {
        margin: 0 1rem;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #FFC61A;
        box-shadow: 0 0 0 2px rgba(255, 198, 26, 0.2);
    }

    /* Touch-friendly buttons */
    .cta-button,
    .calculate-btn,
    .submit-btn {
        min-height: 44px;
        padding: 0.8rem 1.5rem;
    }

    /* Improved scrolling */
    html {
        scroll-behavior: smooth;
    }

    /* Better spacing for mobile */
    section {
        padding: 2rem 1rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }

    /* Improved readability */
    p {
        font-size: 1rem;
        line-height: 1.6;
    }

    /* Better form elements */
    input,
    select,
    textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Improved map container */
    .map-container {
        margin: 0 1rem;
        border-radius: 10px;
        overflow: hidden;
    }
}

/* Tablet Optimizations */
@media (min-width: 769px) and (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .nav-links {
        margin-left: 1rem;
    }

    .nav-links li {
        margin-left: 1rem;
    }

    .hero h2 {
        font-size: 2.5rem;
    }

    .location-selector {
        max-width: 90%;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero h2 {
        font-size: 1.8rem;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .contact-item {
        padding: 1rem;
    }

    .social-icons {
        justify-content: center;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    left: 20px;
    bottom: 20px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid #fff;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #128C7E;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn i {
    color: white;
}

@media (max-width: 768px) {
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        font-size: 25px;
        left: 15px;
        bottom: 15px;
    }
} 