/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF8000;
    --text-color: #ffffff;
    --bg-color: #000000;
    --container-width: 1200px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1;
    color: var(--text-color);
    background-color: var(--bg-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background-color: transparent;
    padding: 20px 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    line-height: 1;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
    color: var(--text-color);
}

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #fff;
    z-index: 1000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fullscreen-menu.active {
    display: block;
    opacity: 1;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    z-index: 1002;
    color: #000;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.menu-close:hover {
    color: var(--primary-color);
}

.menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 60px 20px 40px;
}

.menu-logo {
    margin-bottom: 40px;
}

.menu-logo img {
    height: 80px;
}

.menu-links {
    list-style: none;
    text-align: center;
    margin-bottom: 20px;
}

.menu-links li {
    margin: 20px 0;
}

.menu-links a {
    color: #000;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    transition: color 0.3s;
}

.menu-links a:hover {
    color: var(--primary-color);
}

.menu-social {
    display: flex;
    gap: 15px;
    margin-top: 0;
}

.menu-social .social-icon {
    color: #000;
    font-size: 24px;
    transition: color 0.3s;
    padding: 5px;
}

.menu-social .social-icon:hover {
    color: var(--primary-color);
}

/* Hero Section */
#hero {
    height: 100vh;
    background-color: var(--bg-color);
    display: flex;
    align-items: center;
    padding-top: 60px;
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 70px;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
}

.hero-content h1 span {
    display: block;
    line-height: 1;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    max-width: 600px;
    line-height: 1.2;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #e67300;
}

/* About Section */
#about {
    padding: 60px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.about-text h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1;
}

.about-text p {
    line-height: 1.2;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
}

/* Services Section */
#services {
    padding: 60px 0;
    background-color: #111;
}

.services-subtitle {
    text-align: center;
    margin-bottom: 30px;
    line-height: 1;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background-color: #222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    line-height: 1.1;
}

.learn-more {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
}

/* Gallery Section */
#gallery {
    padding: 100px 0;
}

.swiper {
    width: 100%;
    height: 400px;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Contact Section */
#contact {
    padding: 60px 0;
    background-color: #111;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1;
}

.contact-item {
    margin-bottom: 20px;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
    line-height: 1;
}

.contact-item p, 
.contact-item a {
    line-height: 1.1;
}

/* Footer */
footer {
    padding: 30px 0;
    text-align: center;
    background-color: #000;
}

footer p {
    line-height: 1;
}

.social-links {
    margin-bottom: 20px;
}

.social-links a {
    color: var(--text-color);
    font-size: 20px;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Mobile Bottom Menu */
.mobile-bottom-menu {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    padding: 15px 0;
    z-index: 1000;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-item {
    color: var(--text-color);
    text-decoration: none;
    font-size: 24px;
    transition: color 0.3s;
}

.mobile-menu-item:hover,
.mobile-menu-item:active {
    color: var(--primary-color);
}

/* Update Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 60px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
    }

    body.menu-open {
        overflow: hidden;
    }

    .mobile-bottom-menu {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 50px;
    }

    footer {
        margin-bottom: 60px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 40px;
    }
} 