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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: #000;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo h1 {
    font-size: 26px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.logo p {
    font-size: 12px;
    color: #fff;
    letter-spacing: 1px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: space-between;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #4A9EFF;
}

.dropdown {
    position: relative;
}

.chevron {
    font-size: 10px;
    margin-left: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #1a1a1a;
    min-width: 250px;
    padding: 10px 0;
    list-style: none;
    display: none;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
    transition: opacity 0.3s, visibility 0.3s;
}

.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    transition: background-color 0.3s;
}

.dropdown-menu a:hover {
    background-color: #2a2a2a;
    color: #4A9EFF;
}

.header-cta {
    display: flex;
    gap: 10px;
    align-items: center;
}

.header-cta .btn {
    min-width: 190px;
    text-align: center;
}

.header-cta .btn-phone {
    justify-content: center;
}

.btn {
    padding: 9px 20px;
    border: none;
    border-radius: 4px;
    font-size: 13px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.btn-primary {
    background-color: #4A9EFF;
    color: #fff;
}

.btn-primary:hover {
    background-color: #3a8eef;
    transform: translateY(-2px);
}

.btn-phone {
    background-color: #fff;
    color: #000;
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-phone:hover {
    background-color: #f0f0f0;
}

.phone-icon {
    font-size: 16px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: auto;
    padding: 40px 0;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    padding: 60px 0;
}

.hero-text {
    max-width: 600px;
}

.hero-heading {
    font-size: 60px;
    font-weight: bold;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
}

.hero-heading span {
    display: block;
}

.hero-description {
    font-size: 16px;
    line-height: 1.7;
    color: #fff;
    max-width: 520px;
}

/* Form Styles */
.hero-form {
    display: flex;
    justify-content: flex-end;
}

.form-container {
    background-color: #1a1a1a;
    padding: 32px;
    border-radius: 8px;
    max-width: 430px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-logo h3 {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-align: center;
}

.form-logo p {
    font-size: 11px;
    color: #fff;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 20px;
}

.form-title {
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: none;
    border-radius: 4px;
    background-color: #fff;
    color: #000;
    font-size: 14px;
    font-family: inherit;
    width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #4A9EFF;
    outline-offset: 2px;
}

.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.flag-icon {
    position: absolute;
    left: 12px;
    font-size: 18px;
    z-index: 1;
}

.phone-input-wrapper input {
    padding-left: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group label {
    font-size: 12px;
    line-height: 1.5;
    cursor: pointer;
}

.terms-link {
    color: #4A9EFF;
    text-decoration: underline;
}

.terms-link:hover {
    color: #3a8eef;
}

.btn-submit {
    background-color: #4A9EFF;
    color: #fff;
    padding: 16px;
    font-size: 16px;
    font-weight: bold;
    width: 100%;
    margin-top: 10px;
}

.btn-submit:hover {
    background-color: #3a8eef;
    transform: translateY(-2px);
}


/* Services Section */
.services {
    background-color: #000;
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background-color: #4A9EFF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.2);
}

.service-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #4A9EFF;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background-color: #000;
    padding: 80px 0;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 18px;
    color: #4A9EFF;
    margin-bottom: 15px;
    font-weight: bold;
}

.contact-item a,
.contact-item p {
    color: #fff;
    font-size: 16px;
    text-decoration: none;
}

.contact-item a:hover {
    color: #4A9EFF;
}

.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-link {
    color: #4A9EFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 20px;
    border: 2px solid #4A9EFF;
    border-radius: 4px;
    transition: all 0.3s;
}

.social-link:hover {
    background-color: #4A9EFF;
    color: #fff;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.footer p {
    color: #666;
    font-size: 14px;
}

/* Gallery Page Styles */
.gallery-header {
    background-color: #000;
    padding: 100px 0 60px;
    text-align: center;
}

.gallery-header h1 {
    font-size: 48px;
    font-weight: bold;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-header p {
    font-size: 18px;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    padding: 60px 20px;
    background-color: #000;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* About Section Styles */
.about-content {
    background-color: #000;
    padding: 80px 0;
}

.about-content .section-title {
    margin-bottom: 50px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-section {
    margin: 0;
    padding: 0;
}

.about-image {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-section h3 {
    font-size: 28px;
    font-weight: bold;
    color: #4A9EFF;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-section p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.about-section ul li {
    font-size: 16px;
    color: #ccc;
    line-height: 1.8;
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
}

.about-section ul li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: #4A9EFF;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-form {
        justify-content: center;
    }

    .hero-heading {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .logo h1 {
        font-size: 24px;
    }

    .logo p {
        font-size: 11px;
    }
    
    .brand {
        width: 100%;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu ul {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        background-color: #0d0d0d;
        padding: 15px 20px;
        border-radius: 8px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        display: none;
    }

    .nav-menu ul li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        width: 100%;
        text-align: center;
        padding: 10px 0;
        border: 1px solid transparent;
        border-radius: 4px;
        background-color: #1a1a1a;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background-color: #4A9EFF;
        color: #000;
        border-color: #4A9EFF;
    }

    .nav-menu ul.open {
        display: flex;
    }

    .header-cta {
        flex-direction: column;
        width: 100%;
    }

    .header-cta .btn {
        width: 100%;
        min-width: auto;
    }

    .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .hero {
        padding: 25px 0 35px;
    }

    .hero-content {
        padding: 35px 0;
        gap: 30px;
    }

    .hero-heading {
        font-size: 36px;
    }

    .hero-description {
        font-size: 14px;
    }

    .form-container {
        padding: 30px 20px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

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

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

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image {
        order: -1;
        max-height: 400px;
    }
}

@media (max-width: 480px) {
    .hero-heading {
        font-size: 28px;
    }

    .section-title {
        font-size: 32px;
    }

    .form-title {
        font-size: 24px;
    }
}

