/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

/* Header */
.header {
    background-color: #1a1a1a;
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.15);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #222222;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
}

.nav {
    display: flex;
    gap: 2.5rem;
}

.nav a {
    text-decoration: none;
    color: #b0b0b0;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: #007BFF;
}

.call-button {
    background-color: #007BFF;
    color: #ffffff;
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 123, 255, 0.3);
}

.call-button:hover {
    background-color: #0056cc;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.6);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    color: #ffffff;
    margin-top: 60px;
    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(135deg, rgba(26, 26, 26, 0.8), rgba(0, 123, 255, 0.2));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 600px;
    padding: 0 20px;
    margin-right: 5%;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.3px;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.1rem 2.2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.3px;
}

.btn-primary {
    background-color: #007BFF;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
}

.btn-primary:hover {
    background-color: #0056cc;
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2.5px solid #007BFF;
}

.btn-secondary:hover {
    background-color: #007BFF;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
}

.btn-accent {
    background-color: #007BFF;
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
}

.btn-accent:hover {
    background-color: #0056cc;
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.6);
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: #222222;
}

.services h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 3.5rem;
    letter-spacing: -0.5px;
}

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

.service-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    border: 1px solid #333333;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 123, 255, 0.2);
    border-color: #007BFF;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #007BFF;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.service-card p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Feature Highlight Section */
.feature-highlight {
    padding: 4rem 0;
    background: linear-gradient(135deg, #007BFF, #0056cc);
    text-align: center;
}

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

.feature-highlight h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 2rem;
    letter-spacing: -0.3px;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: #1a1a1a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    text-align: center;
}

.about-image {
    max-width: 500px;
    margin: 0 auto;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.about-text h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: #b0b0b0;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: #222222;
}

.contact h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 3.5rem;
    letter-spacing: -0.5px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
}

.contact-form-container {
    position: relative;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1.5px solid #333333;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background-color: #1a1a1a;
    color: #e0e0e0;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666666;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007BFF;
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
    background-color: #222222;
}

.success-message {
    display: none;
    background-color: #1a3a1a;
    border: 2px solid #28a745;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.success-message h3 {
    color: #28a745;
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
}

.success-message p {
    color: #28a745;
    font-size: 1rem;
}

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

.info-box {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
}

.info-box h3 {
    color: #007BFF;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-box p {
    margin-bottom: 0.8rem;
    color: #b0b0b0;
    font-size: 1rem;
}

.info-box a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.info-box a:hover {
    color: #0056cc;
    text-decoration: underline;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
}

/* Footer */
.footer {
    background-color: #0f0f0f;
    color: #b0b0b0;
    padding: 3.5rem 0 1.5rem;
    border-top: 1px solid #333333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-section h3 {
    margin-bottom: 1.2rem;
    color: #ffffff;
    font-size: 1.1rem;
}

.footer-section p {
    color: #808080;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
}

.footer-section a {
    color: #007BFF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #0056cc;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    color: #666666;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .call-button {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    .hero {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        margin-right: 0;
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2rem;
    }

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

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

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .services h2,
    .feature-highlight h2,
    .about-text h2,
    .contact h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero {
        margin-top: 120px;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.9rem;
    }

    .services h2,
    .feature-highlight h2,
    .about-text h2,
    .contact h2 {
        font-size: 1.8rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.error-message {
    animation: fadeIn 0.3s ease;
}
