@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-main: #060608;
    --bg-card: rgba(255, 255, 255, 0.02);
    --bg-card-hover: rgba(255, 255, 255, 0.05);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(212, 175, 55, 0.4);
    --text-main: #ffffff;
    --text-light: #94a3b8;
    --accent-color: #d4af37; /* Architectural Gold */
    --accent-hover: #f1c94f;
    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Typography Utilities */
.text-center { text-align: center; }
.text-gray-600 { color: var(--text-light); }
.text-3xl { font-size: 3rem; letter-spacing: -0.03em; font-weight: 800; }
.font-bold { font-weight: 700; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-12 { margin-bottom: 4rem; }
.py-16 { padding: 8rem 0; }
.max-w-2xl { max-width: 55rem; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Navbar - Glassmorphism */
.navbar {
    background: rgba(6, 6, 8, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    text-decoration: none;
    color: var(--text-main);
    letter-spacing: -0.05em;
}

.logo span {
    color: var(--accent-color);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
}

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

/* Hero */
.hero {
    position: relative;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: var(--bg-main);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/hero.jpg') center/cover no-repeat;
    animation: kenBurns 25s ease-out infinite alternate;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    /* Deep fade + subtle animated architectural grid */
    background: 
        linear-gradient(180deg, rgba(6, 6, 8, 0.2) 0%, rgba(6, 6, 8, 1) 95%), 
        linear-gradient(90deg, rgba(6, 6, 8, 0.95) 0%, rgba(6, 6, 8, 0.4) 100%),
        linear-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(212, 175, 55, 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 60px 60px, 60px 60px;
    z-index: 2;
    animation: slideGrid 40s linear infinite;
}

@keyframes kenBurns {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-1%, 2%); }
}

@keyframes slideGrid {
    0% { background-position: 0 0, 0 0, 0 0, 0 0; }
    100% { background-position: 0 0, 0 0, 0 600px, 600px 0; }
}

.hero .container {
    position: relative;
    z-index: 3;
    padding-top: 60px;
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    max-width: 900px;
}

.hero-title span {
    background: linear-gradient(135deg, var(--accent-color) 0%, #fff 40%, var(--accent-color) 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: goldShimmer 6s linear infinite;
}

@keyframes goldShimmer {
    to { background-position: 200% center; }
}

.hero-subtitle {
    font-size: 1.35rem;
    max-width: 650px;
    margin-bottom: 3rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Hero Overlay Elements */
.hero-aurora {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
}

.glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.4;
    mix-blend-mode: screen;
}

.glow-1 {
    background: var(--accent-color);
    top: -20%;
    right: -10%;
    animation: auroraOrb 20s infinite alternate ease-in-out;
}

.glow-2 {
    background: #4f69af; /* Deep architectural blue contrast */
    bottom: -20%;
    left: -10%;
    animation: auroraOrb 25s infinite alternate-reverse ease-in-out;
}

@keyframes auroraOrb {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20%, 20%) scale(1.2); }
    100% { transform: translate(10%, -10%) scale(0.9); }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--text-light);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
    pointer-events: none;
}

.mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    margin-bottom: 0.75rem;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 2px;
    animation: mouseScroll 2s infinite cubic-bezier(0.15, 0.41, 0.69, 0.94);
}

@keyframes mouseScroll {
    0% { opacity: 1; transform: translate(-50%, 0); }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--accent-color);
    color: #000;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: occasionalShimmer 6s infinite;
    animation-delay: 2s;
    pointer-events: none;
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.25);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border-color: var(--border-color);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Packages Grid */
.packages-section {
    position: relative;
    z-index: 10;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.package-card {
    background: var(--bg-card);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid var(--border-color);
    border-radius: 8px; /* Sharper edges for architectural feel */
    padding: 3.5rem 2.5rem;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.04) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: occasionalShimmer 9s infinite;
    pointer-events: none;
    z-index: 10;
}

@keyframes occasionalShimmer {
    0% { left: -150%; }
    15% { left: 200%; }
    100% { left: 200%; }
}

.package-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: var(--border-hover);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.package-header {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 2rem;
}

.package-header h3 {
    color: var(--accent-color);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 1rem;
}

.package-header h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    min-height: 4.5rem;
    line-height: 1.3;
}

.price {
    font-size: 4rem;
    font-weight: 300;
    color: var(--text-main);
    display: flex;
    align-items: flex-start;
    margin: 1.5rem 0;
    letter-spacing: -0.05em;
}

.price .currency, .price .decimals {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.price .gst {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    margin-top: 2.5rem;
    margin-left: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-options {
    margin: 1.5rem 0;
}

.price-options .option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px dashed var(--border-color);
}

.price-options .option:last-child {
    border-bottom: none;
}

.price-options .option-title {
    color: var(--text-light);
    font-size: 1.05rem;
    white-space: nowrap;
}

.price-options .option-price {
    text-align: right;
}

.price-options .option-price strong {
    display: block;
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 700;
}

.price-options .option-price .gst {
    display: block;
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: -2px;
}

.deliverable {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    margin-top: 1rem;
}

.ideal-for {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.ideal-for strong {
    color: var(--text-main);
}

.core-services {
    list-style: none;
    margin-bottom: 3rem;
    flex-grow: 1;
}

.core-services li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
    color: #cbd5e1;
}

.core-services li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.btn-block {
    width: 100%;
}

.package-footer {
    margin-top: auto;
}

.featured-package {
    border-color: rgba(212, 175, 55, 0.4);
    background: linear-gradient(to bottom, rgba(212, 175, 55, 0.04), rgba(255, 255, 255, 0.01));
}

.featured-package::after {
    content: "Most Popular";
    position: absolute;
    top: -1px;
    right: 2rem;
    background: var(--accent-color);
    color: #000;
    padding: 0.5rem 1.5rem;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Checkout Section */
.checkout-section {
    min-height: 100vh;
}

.checkout-container {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 5rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}

.form-group {
    margin-bottom: 2rem;
}

label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-light);
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
    width: 100%;
    padding: 1.25rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-main);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 0 1px var(--accent-color);
}

.checkout-actions {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border-color);
}

/* Portfolio Gallery */
.portfolio-section {
    position: relative;
    z-index: 10;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    aspect-ratio: 4 / 3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
    opacity: 0.85;
}

.gallery-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.gallery-item:hover img {
    transform: scale(1.08);
    opacity: 1;
}

.gallery-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--accent-color);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    pointer-events: none;
    border: 1px solid rgba(212, 175, 55, 0.3);
    transition: var(--transition);
    transform: translateY(0);
}

.gallery-item:hover .gallery-label {
    background: rgba(0, 0, 0, 0.9);
    border-color: var(--accent-color);
    transform: translateY(-4px);
    color: #fff;
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(6, 6, 8, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    animation: zoomIn 0.3s ease;
}

#lightbox-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #cbd5e1;
    padding: 15px 0;
    height: 50px;
    font-size: 1rem;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {transform:scale(0.9); opacity:0}
    to {transform:scale(1); opacity:1}
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent-color);
    text-decoration: none;
    cursor: pointer;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 6rem 0 0;
    margin-top: 4rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info h3 {
    color: var(--text-main);
    margin-bottom: 1rem;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.05em;
}

.footer-email {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    display: inline-block;
    margin-top: 1rem;
}

.footer-email:hover {
    color: var(--text-main);
}

.footer-links h4,
.footer-legal h4 {
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 0.75rem;
}

.footer-links a,
.footer-legal a {
    color: #64748b;
    font-size: 0.85rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    background: #030304;
    padding: 2rem 0;
    text-align: center;
    color: var(--text-light);
    font-size: 0.85rem;
    border-top: 1px solid var(--border-color);
}

/* Animation utilities */
.fade-in {
    animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 3.5rem; }
    .nav-links { display: none; }
    .checkout-container { padding: 2.5rem 1.5rem; }
    .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.5rem; justify-content: center !important; }
    .price { font-size: 3rem; }
}
