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

html {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

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

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-text {
    font-size: 2rem;
    font-weight: bold;
    color: #00FF41;
    background: linear-gradient(135deg, #00FF41, #00CC33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(0, 255, 65, 0.5);
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #00FF41;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00FF41;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-phone {
    background: transparent;
    color: #66BB6A;
    border: 2px solid #66BB6A;
    padding: 8px 12px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: #66BB6A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 0 15px rgba(102, 187, 106, 0.4);
}

.nav-phone i {
    margin-right: 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 28px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
    border-radius: 1px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 4px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -5px);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.pexels.com/photos/32584617/pexels-photo-32584617.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    background-attachment: fixed;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    font-size: 5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    letter-spacing: 8px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f0f0f0;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-subheading {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #d0d0d0;
    font-weight: 300;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}

.cta-button i {
    margin-right: 8px;
}

/* Sections */
section {
    padding: 80px 0;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    position: relative;
}

h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #4CAF50;
    margin: 20px auto;
}

/* About Section */
.about {
    background: #2a2a2a;
}

.about h2 {
    color: #e0e0e0;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: end;
    max-width: 1000px;
    margin: 0 auto;
}

.about-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    color: #e0e0e0;
}

.award {
    text-align: center;
    background: #66BB6A;
    color: white;
    padding: 20px;
    border-radius: 0;
    font-weight: bold;
    box-shadow: 0 0 20px rgba(102, 187, 106, 0.3);
}

.award i {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1e1e1e 100%);
    padding: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.services-full-width {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 80px 0;
}

.services-title-container {
    text-align: left;
    margin-bottom: 60px;
    padding-left: 5%;
}

.services-title-container h2 {
    color: #e0e0e0;
    font-size: 3rem;
    margin-bottom: 20px;
    text-align: left;
}

.services-title-container h2::after {
    display: none;
}

.title-underline {
    width: 80px;
    height: 3px;
    background: #66BB6A;
    margin: 0;
}

.services-main-layout {
    display: grid;
    grid-template-columns: 60% 40%;
    height: 70vh;
    min-height: 600px;
}

.services-carousel-container {
    display: flex;
    align-items: stretch;
    padding: 0;
}

.main-carousel {
    width: 100%;
    height: 100%;
}

.carousel-cell {
    width: 100%;
    height: 100%;
    margin-right: 0;
}

.service-tile {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.tile-content {
    text-align: center;
    padding: 40px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.tile-content i {
    font-size: 4rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.tile-content h3 {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.tile-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
    max-width: 280px;
}

/* Tile Color Schemes - Flickity inspired */
.tile-graphite {
    background: #ECEFF1;
    color: #37474F;
}

.tile-orange {
    background: #F4511E;
    color: #ffffff;
}

.tile-teal {
    background: #26A69A;
    color: #ffffff;
}

.tile-beige {
    background: #FDD835;
    color: #37474F;
}

.tile-steel {
    background: #5C6BC0;
    color: #ffffff;
}

.tile-sage {
    background: #66BB6A;
    color: #ffffff;
}

.services-image-container {
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
}

.services-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Flickity Customization */
.flickity-button {
    background: rgba(0, 0, 0, 0.5);
    border: none;
}

.flickity-button:hover {
    background: rgba(0, 0, 0, 0.7);
}

.flickity-button.previous {
    left: 20px;
}

.flickity-button.next {
    right: 20px;
}

.flickity-page-dots {
    bottom: 20px;
}

.flickity-page-dots .dot {
    background: rgba(255, 255, 255, 0.4);
    border: none;
    width: 12px;
    height: 12px;
}

.flickity-page-dots .dot.is-selected {
    background: #00FF41;
}

/* Reviews Section */
.reviews {
    background: #2a2a2a;
}

.rating {
    text-align: center;
    margin-bottom: 3rem;
}

.reviews h2 {
    color: #e0e0e0;
}

.stars {
    font-size: 1.5rem;
    color: #66BB6A;
    margin-bottom: 0.5rem;
}

.rating-number {
    font-size: 1.2rem;
    font-weight: bold;
    color: #e0e0e0;
}

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

.review-item {
    background: #333;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.review-stars {
    color: #66BB6A;
    margin-bottom: 1rem;
}

.review-item p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #e0e0e0;
}

.reviewer {
    font-weight: bold;
    color: #b0b0b0;
}



/* Map Section */
.map {
    background: #2a2a2a;
}

.map h2 {
    color: #e0e0e0;
}

.map-container {
    margin-top: 2rem;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Contact Section */
.contact {
    background: #1a1a1a;
}

.contact h2 {
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.contact-subtitle {
    text-align: center;
    color: #b0b0b0;
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.contact-icon {
    background: #66BB6A;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    color: #e0e0e0;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.contact-details p {
    color: #b0b0b0;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: #66BB6A;
    text-decoration: none;
    font-weight: bold;
}

.contact-details a:hover {
    color: #81C784;
}

.contact-form-container {
    background: #333;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    height: fit-content;
}

.contact-form-container h3 {
    color: #e0e0e0;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    width: 100%;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #e0e0e0;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #555;
    border-radius: 5px;
    font-size: 1rem;
    background: #222;
    color: #e0e0e0;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #66BB6A;
}

.submit-button {
    background: linear-gradient(135deg, #66BB6A, #4CAF50);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 187, 106, 0.3);
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 187, 106, 0.4);
}

.submit-button i {
    margin-right: 8px;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 2rem 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link, .nav-phone {
        font-size: 1.2rem;
        padding: 1rem;
    }

    .nav-link {
        font-size: 0.9rem;
    }

    .nav-phone {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .hero-logo {
        font-size: 4.5rem;
        letter-spacing: 6px;
        font-weight: 400;
    }

    .hero-tagline {
        font-size: 1.4rem;
    }

    .hero-subheading {
        font-size: 1.1rem;
    }

    h2 {
        font-size: 2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-info {
        order: 2;
    }

    .contact-form-container {
        order: 1;
    }

    .services-main-layout {
        grid-template-columns: 1fr;
        height: auto;
        min-height: auto;
    }

    .services-carousel-container {
        order: 2;
        padding: 0;
        height: 400px;
    }

    .services-image-container {
        order: 1;
        height: 300px;
    }

    .service-tile {
        width: 100%;
        height: 100%;
    }

    .main-carousel {
        height: 400px;
    }

    .services-title-container {
        text-align: center;
        padding-left: 0;
    }

    .services-title-container h2 {
        text-align: center;
        font-size: 2.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem;
        margin: 0 1rem;
    }

    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .nav-link, .nav-phone {
        font-size: 1.1rem;
    }

    .hero-logo {
        font-size: 3.5rem;
        letter-spacing: 3px;
        font-weight: 400;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .cta-button {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .services-title-container h2 {
        font-size: 2rem;
    }

    .services-carousel-container {
        height: 350px;
    }

    .service-tile {
        width: 100%;
        height: 100%;
    }

    .main-carousel {
        height: 350px;
    }

    .tile-content {
        padding: 20px;
    }

    .tile-content i {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    .tile-content h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .tile-content p {
        font-size: 0.9rem;
    }



    .contact-form-container {
        padding: 2rem;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        align-items: center;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin: 0 auto;
    }

    .contact-details {
        text-align: center;
        width: 100%;
    }
}