body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFFFFF;
    color: #003087;
    line-height: 1.3;
}

header {
    background: linear-gradient(90deg, #4A90E2 0%, #6BA8E2 100%);
    color: #FFFFFF;
    text-align: center;
    padding: 10px 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid #FFD700;
    position: relative;
    overflow: hidden;
}

header .brand-accent {
    width: 30px;
    height: 1px;
    background-color: #FFD700;
    margin: 5px auto;
    position: relative;
}

header .brand-accent::before,
header .brand-accent::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 50%;
    top: -1px;
}

header .brand-accent::before { left: -6px; }
header .brand-accent::after { right: -6px; }

header img {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

header img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

header .tagline {
    font-size: 0.7em;
    margin-top: 3px;
    opacity: 0.85;
}

nav {
    background-color: #F8F9FA;
    padding: 6px 0;
    text-align: center;
    border-bottom: 1px solid #E9ECEF;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #003087;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    position: relative;
    display: flex;
    align-items: center;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #D4A017;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #D4A017;
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a i {
    margin-right: 2px;
}

.hero {
    padding: 60px 15px;
    position: relative;
    color: #FFFFFF;
    overflow: hidden;
    text-align: center;
    background-image: url('cinematic-hero.jpg');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(5px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero h1 {
    font-size: 1.8em;
    margin-bottom: 8px;
    font-weight: 700;
}

.hero p {
    font-size: 0.9em;
    margin-bottom: 10px;
    font-weight: 400;
}

.content {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content h2 {
    color: #003087;
    font-size: 1.5em;
    margin-bottom: 8px;
    border-bottom: 1px solid #D4A017;
    padding-bottom: 3px;
}

.content p {
    font-size: 1em;
    margin-bottom: 15px;
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1em;
}

.contact-info ul {
    list-style-type: none;
    padding: 0;
}

.contact-info ul li {
    margin-bottom: 10px;
}

#quote-form {
    padding: 20px;
}

#quote-form label {
    margin-bottom: 5px;
    font-weight: 600;
}

#quote-form input,
#quote-form textarea,
#quote-form select {
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #E9ECEF;
    border-radius: 3px;
    font-size: 0.9em;
}

#quote-form input[type="radio"] {
    margin-right: 10px;
}

#quote-form button {
    background-color: #FFEB3B;
    color: #333333;
    padding: 10px;
    border: 1px solid #FFD700;
    border-radius: 3px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

#quote-form button:hover {
    background-color: #FFD700;
    color: #FFFFFF;
    transform: translateY(-1px);
}

#services {
    padding: 20px;
}

#services h2 {
    color: #003087;
    font-size: 1.5em;
    margin-bottom: 8px;
    border-bottom: 1px solid #D4A017;
    padding-bottom: 3px;
    text-align: center;
}

#services ul {
    list-style-type: disc;
    padding-left: 20px;
}

#services ul li {
    margin-bottom: 15px;
    font-size: 0.85em;
    line-height: 1.4;
}

#services ul li strong {
    color: #003087;
    font-weight: 600;
}

#commercial-services {
    padding: 20px;
}

#commercial-services h2 {
    color: #003087;
    font-size: 1.5em;
    margin-bottom: 8px;
    border-bottom: 1px solid #D4A017;
    padding-bottom: 3px;
    text-align: center;
}

#commercial-services ul {
    list-style-type: disc;
    padding-left: 20px;
}

#commercial-services ul li {
    margin-bottom: 15px;
    font-size: 0.85em;
    line-height: 1.4;
}

#commercial-services ul li strong {
    color: #003087;
    font-weight: 600;
}

footer {
    background-color: #003366;
    color: white;
    text-align: center;
    padding: 10px;
    position: relative;
    width: 100%;
    bottom: 0;
}

footer a {
    color: #D4A017;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.cta-button {
    display: inline-block;
    background-color: #FFEB3B;
    color: #333333;
    padding: 8px 15px;
    text-decoration: none;
    font-weight: 700;
    border: 1px solid #FFD700;
    border-radius: 3px;
    margin-top: 10px;
    transition: background-color 0.3s, color 0.3s, transform 0.3s;
    z-index: 2;
    position: relative;
}

.cta-button:hover {
    background-color: #FFD700;
    color: #FFFFFF;
    transform: translateY(-1px);
    cursor: pointer;
}

.hero {
    animation: zoomBackground 5s infinite alternate;
}

@keyframes zoomBackground {
    0% { transform: scale(1); }
    100% { transform: scale(1.03); }
}

.about-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px 0;
    justify-items: center;
}

.gallery img {
    width: 100%;
    height: auto;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    max-width: 250px;
}

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

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
}

.modal-content {
    margin: 50px auto;
    max-width: 90%;
    max-height: 90vh;
}

.modal-content img {
    width: 100%;
    height: auto;
    max-height: 90vh;
}

.close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #FFFFFF;
    font-size: 2em;
    cursor: pointer;
}

.close:hover {
    color: #D4A017;
}

@media (max-width: 768px) {
    header {
        padding: 8px;
    }
    nav ul {
        flex-direction: column;
    }
    nav ul li {
        margin: 5px 0;
    }
    header img {
        max-width: 90px;
    }
    .hero {
        padding: 40px 10px;
    }
    .hero h1 {
        font-size: 1.4em;
    }
    .hero p {
        font-size: 0.8em;
    }
    .content {
        padding: 10px;
    }
    .content h2 {
        font-size: 1.3em;
    }
    .content p {
        font-size: 0.9em;
    }
    .contact-info {
        font-size: 0.9em;
    }
    #quote-form {
        padding: 10px;
    }
    #quote-form input,
    #quote-form textarea,
    #quote-form select,
    #quote-form button {
        font-size: 0.85em;
    }
    #services {
        padding: 10px;
    }
    #services h2 {
        font-size: 1.3em;
    }
    #services ul li {
        font-size: 0.8em;
    }
    #commercial-services {
        padding: 10px;
    }
    #commercial-services h2 {
        font-size: 1.3em;
    }
    #commercial-services ul li {
        font-size: 0.8em;
    }
    .content {
        padding: 20px;
    }
    .content h2 {
        font-size: 1.8em;
    }
    .about-text {
        max-width: 100%;
    }
    .gallery {
        grid-template-columns: 1fr;
    }
}