@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Open+Sans:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Slab:wght@700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');

body {
    font-family: 'Open Sans', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #f7f9fb;
    color: #222;
}
header {
    background: #1a2235;
    color: #ffd700;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    position: sticky;
    top: 0;
    z-index: 1000;
}
header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
header h1 {
    font-family: 'Bebas Neue', 'Montserrat', Arial, sans-serif;
    font-size: 3.2rem;
    letter-spacing: 4px;
    color: #ffd700;
    background: linear-gradient(90deg, #ffd700 60%, #fffbe6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    text-shadow: 2px 2px 8px #1a223555, 0 2px 12px #ffd70033;
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
}
.tagline {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #bfa100;
    font-weight: 400;
    letter-spacing: 1.5px;
    margin: 8px 0 18px 0;
    text-shadow: 0 2px 8px #ffd70033;
    background: none;
}
nav {
    width: 100%;
    margin-top: 10px;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 36px;
    background: #232b3e;
    border-radius: 0 0 8px 8px;
    padding: 12px 0 12px 12px;
}
nav a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.2s, border-bottom 0.2s;
    font-size: 1.08rem;
    padding-bottom: 2px;
    border-bottom: 2px solid transparent;
}
nav a:hover, nav a:focus {
    color: #1a2235;
    background: #ffd700;
    border-radius: 4px;
    border-bottom: 2px solid #1a2235;
    padding: 2px 8px;
}
.hero {
    background: linear-gradient(90deg, #f7f9fb 60%, #e3eafc 100%);
    color: #1a2235;
    padding: 70px 0 50px 0;
    text-align: center;
}
.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 12px;
    color: #1a2235;
}
.hero p {
    font-size: 1.18rem;
    color: #444;
}
section {
    margin-bottom: 48px;
}
.about-home, .items, .gallery-home, .journey-home, .contact-home, .about, .services, .gallery, .journey, .contact {
    max-width: 1200px;
    margin: 48px auto;
    padding: 48px 32px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(26,34,53,0.08);
}
.product-list {
    list-style: disc inside;
    margin: 24px 0 36px 0;
    padding-left: 20px;
}
.product-list li {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: #1a2235;
}
.gallery-home .gallery-grid, .gallery .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    margin-bottom: 24px;
}
.gallery-grid img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 8px #1a223522;
    transition: transform 0.2s, box-shadow 0.2s;
    border: 2px solid #e3eafc;
    background: #f7f9fb;
}
.gallery-grid img:hover {
    transform: scale(1.04);
    box-shadow: 0 4px 16px #ffd70055;
    border-color: #ffd700;
}
.journey-home, .journey {
    background: linear-gradient(90deg, #fff 60%, #e3eafc 100%);
}
footer {
    background: #232b3e;
    color: #ffd700;
    text-align: center;
    padding: 32px 0 24px 0;
    margin-top: 60px;
    font-weight: 500;
    border-top: 4px solid #ffd700;
}
.footer-links {
    margin: 18px 0 0 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.footer-links a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.08rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}
.btn {
    background: #ffd700;
    color: #1a2235;
    padding: 14px 36px;
    border-radius: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 2px 8px #ffd70033;
    transition: background 0.2s, color 0.2s;
    border: none;
    outline: none;
    margin: 8px 8px 0 0;
    display: inline-block;
}
.btn:hover, .btn:focus {
    background: #1a2235;
    color: #ffd700;
    box-shadow: 0 4px 16px #ffd70055;
    border: 2px solid #ffd700;
}
.about-home h3, .items h3, .gallery-home h3, .journey-home h3, .contact-home h3, .about h3, .services h3, .gallery h3, .journey h3, .contact h3 {
    color: #1a2235;
    font-size: 2rem;
    margin-bottom: 16px;
    font-weight: 700;
}
@media (max-width: 900px) {
    header .container, .about-home, .items, .gallery-home, .journey-home, .contact-home, .about, .services, .gallery, .journey, .contact {
        padding: 18px 8px;
    }
    nav ul {
        gap: 16px;
        padding: 10px 0 10px 6px;
    }
    .gallery-home .gallery-grid, .gallery .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    .gallery-grid img {
        height: 120px;
    }
}
.hero-animated {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}
@keyframes fadeSlideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.square-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 22px;
    margin: 36px 0 24px 0;
}
.square-gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px #1a223522;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid #e3eafc;
    background: #f7f9fb;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideUp 1.1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.square-gallery-grid img:hover {
    transform: scale(1.07);
    box-shadow: 0 6px 24px #ffd70055;
    border-color: #ffd700;
}
.square-gallery-grid figure {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.square-gallery-grid figcaption {
    margin-top: 10px;
    font-size: 1.05rem;
    color: #1a2235;
    background: #fffbe6;
    border-radius: 6px;
    padding: 4px 10px;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 1px 4px #ffd70022;
    max-width: 90%;
    word-break: break-word;
}
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeSlideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }
.fade-in-delay-4 { animation-delay: 0.8s; }
.fade-in-delay-5 { animation-delay: 1.0s; }
.fade-in-delay-6 { animation-delay: 1.2s; }
.fade-in-delay-7 { animation-delay: 1.4s; }
.fade-in-delay-8 { animation-delay: 1.6s; }
.fade-in-delay-9 { animation-delay: 1.8s; }
.fade-in-delay-10 { animation-delay: 2.0s; }
@media (max-width: 900px) {
    .square-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
}
.about-section {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.7;
    font-size: 1.13rem;
    color: #232b3e;
    margin-bottom: 36px;
}
.about-heading {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.3rem;
    color: #1a2235;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}
.about-subheading {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.3rem;
    color: #ffd700;
    margin: 24px 0 10px 0;
    font-weight: 600;
}
.about-message {
    background: #fffbe6;
    border-left: 6px solid #ffd700;
    border-radius: 8px;
    padding: 24px 28px;
    margin: 36px 0 36px 0;
    font-size: 1.15rem;
    color: #1a2235;
    box-shadow: 0 2px 12px #ffd70022;
    font-family: 'Open Sans', Arial, sans-serif;
}
.directors-message {
    background: #e3eafc;
    border-left: 6px solid #1a2235;
    border-radius: 8px;
    padding: 24px 28px;
    margin: 36px 0 36px 0;
    font-size: 1.15rem;
    color: #1a2235;
    box-shadow: 0 2px 12px #1a223522;
    font-family: 'Open Sans', Arial, sans-serif;
}
.about-specs {
    background: #f7f9fb;
    border-radius: 8px;
    padding: 18px 24px;
    margin: 24px 0 36px 0;
    border: 1.5px solid #e3eafc;
    font-size: 1.08rem;
}
.about-specs ul {
    margin: 0;
    padding-left: 20px;
}
.about-specs li {
    margin-bottom: 10px;
}
.services-section {
    font-family: 'Open Sans', Arial, sans-serif;
    line-height: 1.7;
    font-size: 1.13rem;
    color: #232b3e;
    margin-bottom: 36px;
}
.services-heading {
    font-family: 'Roboto Slab', serif;
    font-size: 2.2rem;
    color: #1a2235;
    margin-bottom: 18px;
    font-weight: 700;
    letter-spacing: 1px;
}
.services-subheading {
    font-family: 'Roboto Slab', serif;
    font-size: 1.25rem;
    color: #ffd700;
    margin: 24px 0 10px 0;
    font-weight: 600;
}
.services-list {
    margin: 0 0 32px 0;
    padding: 0 0 0 18px;
}
.service-item {
    margin-bottom: 18px;
    font-size: 1.12rem;
    color: #1a2235;
    font-family: 'Open Sans', Arial, sans-serif;
}
.service-item strong {
    font-family: 'Roboto Slab', serif;
    color: #1a2235;
    font-size: 1.13rem;
}
.about-timeline {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 36px 0 28px 0;
    gap: 32px;
}
.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.timeline-circle {
    width: 60px;
    height: 60px;
    background: #ffd700;
    color: #1a2235;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 700;
    box-shadow: 0 2px 8px #ffd70033;
    margin-bottom: 8px;
}
.timeline-label {
    font-size: 1.08rem;
    color: #1a2235;
    font-family: 'Open Sans', Arial, sans-serif;
    font-weight: 600;
    text-align: center;
}
.timeline-line {
    height: 4px;
    width: 60px;
    background: linear-gradient(90deg, #ffd700 60%, #e3eafc 100%);
    border-radius: 2px;
}
@media (max-width: 600px) {
    .about-timeline {
        flex-direction: column;
        gap: 12px;
    }
    .timeline-line {
        width: 4px;
        height: 40px;
        background: linear-gradient(180deg, #ffd700 60%, #e3eafc 100%);
    }
}
.why-choose-us {
    background: #fffbe6;
    border-radius: 14px;
    margin: 60px auto 0 auto;
    padding: 56px 32px 48px 32px;
    max-width: 1200px;
    box-shadow: 0 2px 16px #ffd70022;
}
.why-choose-us h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2rem;
    color: #1a2235;
    margin-bottom: 32px;
    text-align: center;
    font-weight: 700;
}
.why-choose-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 24px;
    justify-content: center;
    margin-bottom: 36px;
}
.why-choose-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 8px #ffd70022;
    padding: 28px 22px 22px 22px;
    max-width: 320px;
    min-width: 220px;
    flex: 1 1 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.why-choose-item:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px #ffd70055;
}
.why-choose-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    color: #ffd700;
    text-shadow: 0 2px 8px #ffd70033;
}
.why-choose-item strong {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1a2235;
    font-size: 1.18rem;
    margin-bottom: 6px;
    display: block;
    text-align: center;
}
.why-choose-item p {
    color: #232b3e;
    font-size: 1.05rem;
    text-align: center;
    margin: 0;
}
@media (max-width: 900px) {
    .why-choose-list {
        flex-direction: column;
        gap: 18px;
        align-items: center;
    }
    .why-choose-item {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin: 36px 0 40px 0;
}
.service-card {
    background: #fffbe6;
    border-radius: 12px;
    box-shadow: 0 2px 12px #ffd70022;
    padding: 32px 18px 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
    min-height: 220px;
}
.service-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 6px 24px #ffd70055;
}
.service-icon {
    font-size: 2.5rem;
    margin-bottom: 18px;
    color: #ffd700;
    text-shadow: 0 2px 8px #ffd70033;
}
.service-card strong {
    font-family: 'Roboto Slab', serif;
    color: #1a2235;
    font-size: 1.18rem;
    margin-bottom: 8px;
    display: block;
    text-align: center;
}
.service-card p {
    color: #232b3e;
    font-size: 1.05rem;
    text-align: center;
    margin: 0;
}
@media (max-width: 900px) {
    .service-cards {
        grid-template-columns: 1fr 1fr;
        gap: 18px;
    }
}
@media (max-width: 600px) {
    .service-cards {
        grid-template-columns: 1fr;
    }
}
.contact-unique {
    background: #e3eafc;
    border-radius: 16px;
    margin: 60px auto 0 auto;
    padding: 48px 24px 40px 24px;
    max-width: 1200px;
    box-shadow: 0 2px 16px #1a223522;
}
.contact-unique-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: space-between;
    align-items: flex-start;
}
.contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #ffd70022;
    padding: 32px 24px 24px 24px;
    min-width: 280px;
    max-width: 350px;
    flex: 1 1 320px;
}
.contact-card h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1a2235;
    font-size: 1.4rem;
    margin-bottom: 18px;
    font-weight: 700;
}
.contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: #232b3e;
    font-size: 1.05rem;
}
.contact-icon {
    font-size: 1.3rem;
    color: #ffd700;
    min-width: 1.5em;
    text-align: center;
}
.contact-form {
    background: #fffbe6;
    border-radius: 12px;
    box-shadow: 0 2px 12px #ffd70022;
    padding: 32px 24px 24px 24px;
    min-width: 280px;
    max-width: 400px;
    flex: 1 1 340px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-form h3 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1a2235;
    font-size: 1.3rem;
    margin-bottom: 18px;
    font-weight: 700;
}
.contact-form form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1.5px solid #e3eafc;
    font-size: 1rem;
    font-family: 'Open Sans', Arial, sans-serif;
    background: #fff;
    color: #232b3e;
    resize: none;
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #ffd700;
    border-color: #ffd700;
}
.contact-form button {
    background: #ffd700;
    color: #1a2235;
    border: none;
    border-radius: 6px;
    padding: 12px 0;
    font-size: 1.08rem;
    font-weight: 700;
    margin-top: 8px;
    cursor: not-allowed;
    opacity: 0.7;
    width: 100%;
}
.contact-map {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px #ffd70022;
    padding: 32px 24px 24px 24px;
    min-width: 220px;
    max-width: 320px;
    flex: 1 1 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.contact-map h4 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #1a2235;
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}
.map-placeholder {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #e3eafc 60%, #ffd700 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2235;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 2px 8px #ffd70022;
}
@media (max-width: 900px) {
    .contact-unique-flex {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }
    .contact-card, .contact-form, .contact-map {
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }
}
.home-timeline {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0;
    margin: 38px 0 32px 0;
    flex-wrap: wrap;
}
.home-timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 110px;
    margin: 0 8px;
}
.home-timeline-icon {
    font-size: 2.2rem;
    background: #ffd700;
    color: #1a2235;
    border-radius: 50%;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px #ffd70033;
    margin-bottom: 8px;
}
.home-timeline-year {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.08rem;
    color: #1a2235;
    font-weight: 700;
    margin-bottom: 4px;
}
.home-timeline-label {
    font-size: 1rem;
    color: #232b3e;
    text-align: center;
    font-weight: 600;
    margin-bottom: 2px;
}
.home-timeline-line {
    height: 4px;
    width: 38px;
    background: linear-gradient(90deg, #ffd700 60%, #e3eafc 100%);
    border-radius: 2px;
    margin-bottom: 18px;
}
@media (max-width: 700px) {
    .home-timeline {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .home-timeline-line {
        width: 4px;
        height: 38px;
        background: linear-gradient(180deg, #ffd700 60%, #e3eafc 100%);
        margin: 0 0 8px 0;
    }
}
