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

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

.header-contact {
    background: #0066cc;
    color: white;
    padding: 0.8rem 2rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: bold;
}

.header-contact a {
    color: white;
    text-decoration: none;
}

header {
    background: #1a1a1a;
    color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 1.8rem;
    color: #0066cc;
}

.tagline {
    font-size: 0.85rem;
    font-style: italic;
    opacity: 0.9;
    margin-top: 0.2rem;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2rem;
}

header nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

header nav a:hover,
header nav a.active {
    color: #0066cc;
}

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

section {
    padding: 5rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #0066cc;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Buttons */
.cta-button {
    background: #0066cc;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #0052a3;
    transform: scale(1.05);
}

.cta-button-secondary {
    background: white;
    color: #0066cc;
    padding: 1.2rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.cta-button-secondary:hover {
    background: #e6e6e6;
    transform: scale(1.05);
}

/* Featured Work Section */
.featured-work {
    background: #f5f5f5;
}

.featured-work h2 {
    color: #0066cc;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.featured-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.featured-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

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

.featured-item h3 {
    color: #0066cc;
    padding: 1.5rem 1rem 0.5rem;
    margin: 0;
    font-size: 1.3rem;
}

.featured-item p {
    color: #666;
    padding: 0 1rem 1.5rem;
    margin: 0;
}

/* Quick Services Section */
.quick-services {
    background: white;
}

.quick-services h2 {
    color: #0066cc;
}

.services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-preview {
    background: linear-gradient(135deg, #f5f5f5 0%, #e6e6e6 100%);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    text-align: center;
    transition: all 0.3s;
}

.service-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-preview h3 {
    color: #0066cc;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.service-preview p {
    color: #666;
    font-size: 1rem;
}

/* Why Choose Us */
.why-choose-us {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.why-choose-us h2 {
    color: #0066cc;
}

.benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: rgba(0, 102, 204, 0.1);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #0066cc;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    background: rgba(0, 102, 204, 0.2);
    transform: translateY(-5px);
}

.benefit-card h3 {
    color: #66b3ff;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: #e6e6e6;
    font-size: 1rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Services Page */
.services {
    background: #f5f5f5;
}

.services h2 {
    color: #0066cc;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid #0066cc;
}

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

.service-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.service-card p {
    color: #666;
    line-height: 1.8;
    font-size: 1rem;
}

/* Gallery Page */
.gallery {
    background: #f5f5f5;
}

.gallery h2 {
    color: #0066cc;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.gallery-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.gallery-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.gallery-item h3 {
    padding: 1.5rem;
    color: #0066cc;
    font-size: 1.3rem;
    margin: 0;
}

/* About Page */
.about {
    background: white;
}

.about h2 {
    color: #0066cc;
}

.about p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Contact Page */
.contact {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

.contact h2 {
    color: #0066cc;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.contact-item h3 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.contact-item p {
    color: #e6e6e6;
    font-size: 1.2rem;
    line-height: 1.8;
}

.contact-item a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #66b3ff;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #0066cc;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background: white;
    color: #333;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #66b3ff;
    box-shadow: 0 0 5px rgba(102, 179, 255, 0.5);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.3s;
}

.form-submit:hover {
    background: #0052a3;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: white;
    padding: 3rem 0 1rem;
    border-top: 3px solid #0066cc;
}

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

.footer-section h4 {
    color: #0066cc;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #e6e6e6;
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #0066cc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #66b3ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
        font-size: 0.85rem;
    }

    .logo h1 {
        font-size: 1.3rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-button,
    .cta-button-secondary {
        width: 100%;
    }

    section h2 {
        font-size: 2rem;
    }

    header nav {
        flex-direction: column;
        gap: 0.5rem;
    }
}