
:root {
    --blue: #003f9e;
    --deep-blue: #001f5c;
    --sky: #eaf4ff;
    --gold: #c99a45;
    --cream: #fffaf2;
    --text: #1d2636;
    --muted: #6b7280;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(0, 43, 120, 0.13);
    --radius: 28px;
}

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

body {
    font-family: "Segoe UI", Georgia, Arial, sans-serif;
    color: var(--text);
    background: linear-gradient(180deg, #ffffff, #f7fbff 45%, #fffaf2);
    line-height: 1.7;
}

a {
    text-decoration: none;
    color: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 99;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 40px rgba(0, 40, 120, 0.08);
}

.top-strip {
    background: linear-gradient(90deg, var(--deep-blue), var(--blue));
    color: white;
    padding: 8px 7%;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    font-size: 14px;
}

.navbar {
    max-width: 1240px;
    margin: auto;
    padding: 12px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.brand img {
    width: 72px;
    height: 58px;
    object-fit: contain;
}

.brand strong {
    font-family: Georgia, serif;
    letter-spacing: 4px;
    color: var(--deep-blue);
    font-size: 24px;
    text-transform: uppercase;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    letter-spacing: 1px;
}

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

.nav-links a {
    font-weight: 700;
    color: #22304a;
    font-size: 15px;
}

.nav-links a:hover {
    color: var(--blue);
}

.book-btn {
    padding: 11px 18px;
    background: linear-gradient(135deg, var(--blue), #1868d8);
    color: white !important;
    border-radius: 30px;
    box-shadow: 0 12px 28px rgba(0, 63, 158, 0.22);
}

.menu-btn {
    display: none;
    border: none;
    background: var(--sky);
    color: var(--blue);
    padding: 8px 12px;
    border-radius: 12px;
    font-size: 24px;
}

.hero {
    min-height: 88vh;
    position: relative;
    display: flex;
    align-items: center;
    padding: 90px 7%;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.95), rgba(255,255,255,0.68), rgba(255,255,255,0.22)),
        url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center right;
}

.hero::after {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    right: -170px;
    bottom: -170px;
    background: radial-gradient(circle, rgba(201,154,69,0.36), transparent 67%);
}

.hero-content {
    max-width: 730px;
    position: relative;
    z-index: 2;
}

.eyebrow,
.section-kicker,
.section-heading span,
.page-hero span {
    color: var(--gold);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.hero h1,
.page-hero h1 {
    font-family: Georgia, serif;
    color: var(--deep-blue);
    font-size: clamp(42px, 6vw, 78px);
    line-height: 1.05;
    margin: 18px 0;
}

.hero p,
.page-hero p {
    color: #40506c;
    font-size: 19px;
    max-width: 640px;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 13px 25px;
    border-radius: 35px;
    border: none;
    font-weight: 900;
    cursor: pointer;
}

.primary {
    background: linear-gradient(135deg, var(--blue), #1d73de);
    color: white;
    box-shadow: 0 14px 30px rgba(0,63,158,0.22);
}

.outline {
    border: 1px solid rgba(0, 63, 158, 0.22);
    color: var(--blue);
    background: white;
}

.intro-section,
.section,
.story-layout,
.about-wrap,
.contact-wrap {
    max-width: 1220px;
    margin: auto;
    padding: 85px 22px;
}

.intro-section {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 32px;
    align-items: center;
}

.intro-text h2,
.section-heading h2,
.story-content h2 {
    font-family: Georgia, serif;
    color: var(--deep-blue);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.15;
    margin: 10px 0 16px;
}

.intro-card,
.service-card,
.detail,
.price-card,
.contact-card,
.enquiry-form,
.about-text,
.about-logo,
.timeline-item {
    background: rgba(255,255,255,0.86);
    border: 1px solid rgba(0,63,158,0.09);
    border-radius: var(--radius);
    padding: 30px;
    box-shadow: var(--shadow);
}

.intro-card {
    background: linear-gradient(145deg, #ffffff, #eef6ff);
}

.intro-card h3 {
    color: var(--deep-blue);
    font-size: 28px;
}

.intro-card a {
    color: var(--blue);
    font-weight: 900;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 46px;
}

.service-grid,
.pricing-grid,
.detailed-services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.service-card {
    min-height: 245px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    right: -35px;
    bottom: -35px;
    background: rgba(0,63,158,0.08);
    border-radius: 50%;
}

.service-card:hover,
.price-card:hover,
.detail:hover {
    transform: translateY(-8px);
    border-color: rgba(201,154,69,0.5);
}

.icon {
    font-size: 42px;
    margin-bottom: 16px;
}

.service-card h3,
.detail h2,
.price-card h2 {
    color: var(--deep-blue);
    margin-bottom: 9px;
}

.film-strip {
    padding: 100px 22px;
    background:
        linear-gradient(rgba(0,31,92,0.65), rgba(0,31,92,0.65)),
        url('https://images.unsplash.com/photo-1529634597503-139d3726fed5?auto=format&fit=crop&w=1700&q=80');
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
}

.film-card {
    max-width: 850px;
    margin: auto;
    background: rgba(255,255,255,0.92);
    border-radius: 34px;
    padding: 48px;
    text-align: center;
    box-shadow: var(--shadow);
}

.film-card h2 {
    font-family: Georgia, serif;
    color: var(--deep-blue);
    font-size: 46px;
    line-height: 1.15;
    margin: 12px 0;
}

.page-hero {
    padding: 110px 22px;
    text-align: center;
    background:
        radial-gradient(circle at top left, rgba(0,63,158,0.16), transparent 34%),
        radial-gradient(circle at bottom right, rgba(201,154,69,0.23), transparent 35%),
        linear-gradient(180deg, #ffffff, #eef6ff);
}

.page-hero p {
    margin: auto;
}

.wedding-page {
    background:
        linear-gradient(rgba(255,255,255,0.88), rgba(255,255,255,0.94)),
        url('https://images.unsplash.com/photo-1469371670807-013ccf25f16a?auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
}

.story-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.story-image {
    min-height: 560px;
    border-radius: 36px;
    background: url('https://images.unsplash.com/photo-1583939003579-730e3918a45a?auto=format&fit=crop&w=1000&q=80') center/cover;
    box-shadow: var(--shadow);
}

.story-content ul,
.price-card ul {
    margin: 22px 0;
    padding-left: 20px;
}

.soft-bg {
    background: linear-gradient(180deg, #f4f9ff, #ffffff);
    border-radius: 40px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.timeline-item b {
    color: var(--gold);
    font-size: 30px;
}

.detailed-services {
    grid-template-columns: repeat(2, 1fr);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.photo {
    min-height: 340px;
    border-radius: 34px;
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow);
}

.photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,31,92,0.72));
}

.photo span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    color: white;
    font-family: Georgia, serif;
    font-size: 28px;
    font-weight: 900;
}

.p1 { background-image: url('https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=900&q=80'); }
.p2 { background-image: url('https://images.unsplash.com/photo-1523438885200-e635ba2c371e?auto=format&fit=crop&w=900&q=80'); }
.p3 { background-image: url('https://images.unsplash.com/photo-1530103862676-de8c9debad1d?auto=format&fit=crop&w=900&q=80'); }
.p4 { background-image: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=900&q=80'); }
.p5 { background-image: url('https://images.unsplash.com/photo-1611162616475-46b635cb6868?auto=format&fit=crop&w=900&q=80'); }
.p6 { background-image: url('https://images.unsplash.com/photo-1574717024653-61fd2cf4d44d?auto=format&fit=crop&w=900&q=80'); }

.small-preview .photo {
    min-height: 280px;
}

.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.price-card {
    position: relative;
}

.price-card strong {
    display: block;
    font-family: Georgia, serif;
    color: var(--gold);
    font-size: 34px;
    margin: 10px 0;
}

.featured {
    background: linear-gradient(180deg, #ffffff, #eef6ff);
    border: 2px solid rgba(201,154,69,0.5);
    transform: scale(1.03);
}

.popular {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--gold);
    color: white;
    padding: 6px 12px;
    border-radius: 18px;
    font-size: 12px;
    font-weight: 900;
}

.about-wrap {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 34px;
    align-items: center;
}

.about-logo {
    text-align: center;
}

.about-logo img {
    width: 100%;
    max-width: 390px;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 25px;
}

.stats div {
    background: var(--sky);
    border-radius: 20px;
    padding: 18px;
}

.stats b {
    display: block;
    color: var(--deep-blue);
    font-size: 22px;
}

.contact-wrap {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 32px;
}

.contact-card h2 {
    font-family: Georgia, serif;
    color: var(--deep-blue);
    font-size: 40px;
    margin-bottom: 18px;
}

.enquiry-form label {
    display: block;
    font-weight: 800;
    color: var(--deep-blue);
    margin-bottom: 7px;
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
    width: 100%;
    border: 1px solid rgba(0,63,158,0.13);
    background: #fbfdff;
    border-radius: 16px;
    padding: 14px 16px;
    margin-bottom: 18px;
    outline: none;
    font-family: inherit;
}

.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 4px rgba(0,63,158,0.08);
}

.success {
    background: #ecfff2;
    border: 1px solid #91e5ad;
    color: #0a7d33;
    padding: 14px;
    border-radius: 16px;
    margin-bottom: 18px;
}

.footer {
    background: #f2f7ff;
    border-top: 1px solid rgba(0,63,158,0.08);
    padding: 60px 22px 20px;
}

.footer-inner {
    max-width: 1220px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 0.7fr 1fr;
    gap: 34px;
}

.footer-logo {
    width: 90px;
    background: white;
    border-radius: 18px;
    padding: 8px;
    box-shadow: var(--shadow);
}

.footer h2,
.footer h3 {
    color: var(--deep-blue);
    margin-bottom: 12px;
}

.footer a {
    display: block;
    margin: 8px 0;
    color: var(--muted);
}

.copyright {
    text-align: center;
    margin-top: 35px;
    color: var(--muted);
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    background: #20b857;
    color: white;
    padding: 14px 20px;
    border-radius: 35px;
    font-weight: 900;
    box-shadow: 0 16px 36px rgba(32,184,87,0.35);
    z-index: 80;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: 0.75s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 980px) {
    .top-strip {
        flex-direction: column;
        text-align: center;
    }

    .menu-btn {
        display: block;
    }

    .nav-links {
        position: absolute;
        left: 18px;
        right: 18px;
        top: 110px;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        border-radius: 24px;
        box-shadow: var(--shadow);
        display: none;
    }

    .nav-links.show {
        display: flex;
    }

    .brand strong {
        font-size: 18px;
        letter-spacing: 2px;
    }

    .brand img {
        width: 62px;
    }

    .hero {
        min-height: auto;
        padding: 80px 22px;
        background-position: center;
    }

    .intro-section,
    .story-layout,
    .about-wrap,
    .contact-wrap,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .service-grid,
    .timeline,
    .portfolio-grid,
    .pricing-grid,
    .detailed-services,
    .stats {
        grid-template-columns: 1fr;
    }

    .featured {
        transform: none;
    }

    .story-image {
        min-height: 360px;
    }

    .film-card {
        padding: 32px;
    }

    .film-card h2 {
        font-size: 34px;
    }
}
