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

body {
    font-family: 'Inter', sans-serif;
    background: #f4f6f9;
    color: #1a1a1a;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

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

.center {
    text-align: center;
}

.section-text {
    max-width: 750px;
    margin: 20px auto 0;
    color: #444;
}

/* HEADER */
.header {
    background: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .05);
    z-index: 10;
}

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

.logo {
    height: 42px;
    /* FIXED SIZE */
    width: auto;
    object-fit: contain;
}

.nav a {
    margin-left: 22px;
    text-decoration: none;
    font-weight: 500;
    color: #111;
}

.nav-cta {
    background: #0f2a4a;
    color: #fff;
    padding: 8px 16px;
    border-radius: 4px;
}

/* HERO */
.hero {
    height: 90vh;
    background: url("hero.jpg") center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 42, 74, .9), rgba(15, 42, 74, .6));
}

.hero-content {
    position: relative;
    color: #fff;
    text-align: center;
    max-width: 820px;
    animation: fadeUp 1s ease forwards;
}

.hero-content span {
    color: #c5a059;
    letter-spacing: 2px;
    font-size: 13px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin: 15px 0;
}

.hero-content p {
    opacity: .9;
    margin-bottom: 30px;
}

/* BUTTONS */
.hero-actions a {
    margin: 0 8px;
}

.btn-primary {
    background: #c5a059;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
}

.btn-outline {
    border: 2px solid #fff;
    color: #fff;
    padding: 14px 32px;
    border-radius: 30px;
    text-decoration: none;
}
/* GALLERY SECTION */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
    margin-top: 30px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    transition: transform .3s ease;
}

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

/* TESTIMONIALS */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 30px;
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, .08);
    font-style: italic;
    color: #444;
}

.testimonial-card strong {
    display: block;
    margin-top: 8px;
    font-weight: 600;
    color: #0f2a4a;
}

/* FEATURE CARDS */
.features-cards .card {
    background: #f9f9f9;
    padding: 28px;
    border-radius: 8px;
    transition: transform .3s ease, box-shadow .3s ease;
}

.features-cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, .1);
}

/* SECTIONS */
.section {
    padding: 80px 0;
}

.light {
    background: #fff;
}

/* GRID & CARDS */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .05);
}

.card h3 {
    margin-bottom: 10px;
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: #aaa;
    padding: 30px;
    text-align: center;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}