:root {
    --navy: #152b52;
    --navy-dark: #0f1d3a;
    --gold: #b5904d;
    --gold-light: #d4ae6a;
    --white: #ffffff;
    --off-white: #faf9f6;
    --text-dark: #333333;
    --text-light: #666666;
    
    --font-heading: 'Cinzel', serif;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Lato', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-serif);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.text-center { text-align: center; }
.text-left { text-align: left; }
.w-100 { width: 100%; }
.bg-light { background-color: var(--off-white); }

.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.ornate-divider {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}
.ornate-divider.left {
    justify-content: flex-start;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-sans);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy);
    border: 1px solid var(--gold);
}
.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
}

.btn-outline {
    background-color: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
}
.btn-outline:hover {
    background-color: var(--navy);
    color: var(--white);
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    border-bottom: 2px solid var(--gold);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.is-scrolled {
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 5px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 15px;
}

/* Brand Logo Image */
.brand-logo {
    height: 55px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}
.logo-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 1px;
}
.logo-subtitle {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 3px;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
}

.nav-list {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--gold);
}
.btn-nav {
    background: var(--navy);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 2px;
}
.btn-nav:hover {
    background: var(--gold);
    color: var(--navy);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 90px;
}
.hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}
.hero-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 29, 58, 0.7);
    z-index: 2;
}
.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 800px;
}
.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--gold);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}
.hero-text {
    font-size: 1.5rem;
    margin-bottom: 40px;
    font-style: italic;
}
.ornate-border-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 20px;
    background: url('data:image/svg+xml;utf8,<svg width="100" height="20" viewBox="0 0 100 20" xmlns="http://www.w3.org/2000/svg"><path d="M 0 0 Q 50 20 100 0 L 100 20 L 0 20 Z" fill="%23faf9f6"/></svg>') repeat-x;
    z-index: 3;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.about-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}
.about-text strong {
    color: var(--navy);
}
.about-image-wrapper {
    position: relative;
    padding: 20px;
}
.about-image {
    width: 100%;
    height: auto;
    display: block;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    position: relative;
    z-index: 2;
}
.image-frame {
    position: absolute;
    top: 0; left: 0; right: 40px; bottom: 40px;
    border: 3px solid var(--gold);
    z-index: 1;
}

/* Services / Packages Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.service-card {
    background: var(--white);
    padding: 10px;
    border: 1px solid rgba(181, 144, 77, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}
.card-inner {
    border: 1px dashed rgba(181, 144, 77, 0.5);
    padding: 40px 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.service-card:hover .card-inner, .service-card.is-active .card-inner {
    border-color: var(--gold);
}
.service-card.is-active {
    border: 2px solid var(--gold);
    background-color: #fffaf0;
}

.service-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}
.service-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 15px;
}
.service-desc {
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}
.btn-select {
    background: transparent;
    border: 1px solid var(--navy);
    color: var(--navy);
    padding: 8px 20px;
    font-family: var(--font-sans);
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}
.service-card:hover .btn-select, .service-card.is-active .btn-select {
    background: var(--navy);
    color: var(--white);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.contact-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}
.contact-details {
    list-style: none;
}
.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 1.1rem;
}
.contact-details i {
    color: var(--gold);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-form-container {
    background: var(--off-white);
    padding: 40px;
    border: 2px solid var(--gold);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    position: relative;
    transition: all 0.3s;
}
.contact-form-container::before {
    content: '';
    position: absolute;
    top: 5px; bottom: 5px; left: 5px; right: 5px;
    border: 1px dashed var(--gold);
    pointer-events: none;
}
.highlight-form {
    box-shadow: 0 0 20px rgba(181, 144, 77, 0.6);
    transform: scale(1.02);
}
.form-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 25px;
    text-align: center;
}
.form-group {
    margin-bottom: 20px;
}
.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(21, 43, 82, 0.2);
    font-family: var(--font-sans);
    font-size: 1rem;
    background: var(--white);
    transition: border-color 0.3s;
}
.form-input:focus {
    outline: none;
    border-color: var(--gold);
}
.form-status {
    text-align: center;
    margin-top: 15px;
    color: var(--gold);
    font-style: italic;
}

/* Standard Footer */
.footer {
    background-color: var(--navy);
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
    border-top: 5px solid var(--gold);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-wrapper {
    background: var(--white);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.footer-title {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 10px;
}

.footer-desc {
    color: #ccc;
    font-family: var(--font-sans);
}

.footer-links h4, .footer-contact h4 {
    font-family: var(--font-heading);
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-family: var(--font-sans);
}
.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    color: #ccc;
    margin-bottom: 10px;
    font-family: var(--font-sans);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-contact i {
    color: var(--gold);
    margin-top: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-links a {
    color: var(--gold);
    font-size: 1.2rem;
    transition: color 0.3s;
}
.social-links a:hover {
    color: var(--white);
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-container, .contact-grid, .footer-grid {
        grid-template-columns: 1fr;
    }
    .hero-title { font-size: 3rem; }
    .image-frame { display: none; }
    .about-image-wrapper { padding: 0; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        display: none;
        border-top: 1px solid #eee;
    }
    .nav.is-open { display: block; }
    .nav-list {
        flex-direction: column;
        padding: 20px 0;
        gap: 20px;
    }
    body.nav-open { overflow: hidden; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
