:root {
    --primary: #c9a84c;
    --primary-dark: #b8943a;
    --bg-dark: #0a0a0a;
    --bg-section: #111111;
    --bg-card: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #999999;
    --text-body: #cccccc;
    --border-color: #2a2a2a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

/* Top Bar */
.top-bar {
    background: var(--bg-section);
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar a { color: var(--text-muted); }
.top-bar a:hover { color: var(--primary); }
.top-bar .social-links a { margin-left: 15px; }

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo-img {
    height: 45px;
    width: auto;
    border-radius: 50%;
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-himmus {
    font-family: 'Pacifico', cursive;
    font-size: 28px;
    color: #4a90d9;
    letter-spacing: 0.5px;
}
.logo-photography {
    font-family: 'Lobster', cursive;
    font-size: 14px;
    color: var(--text-light);
    letter-spacing: 1px;
}

.nav { display: flex; align-items: center; gap: 5px; }

.nav a {
    color: var(--text-muted);
    padding: 8px 16px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav a:hover,
.nav a.active { color: var(--text-light); }

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after { width: 20px; }

.nav .dropdown { position: relative; }

.nav .dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    min-width: 200px;
    padding: 10px 0;
    z-index: 100;
}

.nav .dropdown:hover .dropdown-menu { display: block; }

.nav .dropdown-menu a {
    display: block;
    padding: 10px 20px;
    text-transform: none;
    letter-spacing: 0;
}

.nav .dropdown-menu a:hover { background: rgba(201, 168, 76, 0.1); color: var(--primary); }

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: var(--transition);
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 1.5s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

.hero-content { position: relative; z-index: 2; }

.hero-content { max-width: 800px; padding: 0 20px; }

.hero-subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 64px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-block;
    padding: 14px 40px;
    border: 2px solid var(--primary);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    background: transparent;
    font-family: var(--font-body);
}

.btn:hover {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
}

.btn-primary:hover {
    background: transparent;
    color: var(--text-light);
}

/* Section */
.section {
    padding: 100px 0;
}

.section-dark { background: var(--bg-section); }
.section-light { background: var(--bg-dark); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 15px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.section-sub {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* Grid */
.grid {
    display: grid;
    gap: 30px;
}

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

/* Portfolio Card */
.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
}

.portfolio-card img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-card:hover img { transform: scale(1.05); }

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    padding: 40px 20px 20px;
    color: var(--text-light);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.portfolio-card:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-overlay h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 5px;
}

.portfolio-overlay p {
    font-size: 13px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 4px;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid var(--primary);
    border-radius: 4px;
    z-index: -1;
}

.about-content h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    padding: 60px 0;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--primary);
    display: block;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Testimonials */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 40px;
    border-radius: 4px;
}

.testimonial-stars {
    color: var(--primary);
    margin-bottom: 20px;
    font-size: 14px;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    color: var(--text-light);
    font-size: 16px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 50px 40px;
    text-align: center;
    border-radius: 4px;
    transition: var(--transition);
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.pricing-card.featured {
    border-color: var(--primary);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--bg-dark);
    padding: 4px 20px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.pricing-card h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 24px;
    margin-bottom: 10px;
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--primary);
    margin: 20px 0;
}

.pricing-price span {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-card ul {
    margin: 30px 0;
    text-align: left;
}

.pricing-card li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
}

.pricing-card li:last-child { border: none; }

.pricing-card li::before {
    content: '\2713';
    color: var(--primary);
    margin-right: 10px;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-item .icon {
    color: var(--primary);
    font-size: 20px;
    min-width: 30px;
}

.contact-item h4 {
    color: var(--text-light);
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-item p { margin: 0; font-size: 14px; }

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 14px;
    border-radius: 4px;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form select option { background: var(--bg-dark); }

/* FAQ */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    margin-bottom: 10px;
    border-radius: 4px;
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--text-light);
    font-weight: 500;
    transition: var(--transition);
}

.faq-question:hover { color: var(--primary); }

.faq-question::after {
    content: '+';
    font-size: 20px;
    color: var(--primary);
    transition: var(--transition);
}

.faq-item.active .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p { color: var(--text-muted); font-size: 14px; }

/* Instagram */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
}

.insta-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insta-item:hover img { transform: scale(1.05); }

.insta-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.insta-item:hover .insta-overlay { opacity: 1; }

.insta-overlay span {
    color: var(--text-light);
    font-size: 30px;
}

/* Footer */
.footer {
    background: var(--bg-section);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
}

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

.footer-about h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-about h3 span { color: var(--primary); }

.footer-about p { font-size: 14px; margin-bottom: 20px; }

.footer-social a {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid var(--border-color);
    margin-right: 10px;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer h4 {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-links a:hover { color: var(--primary); }

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
    color: var(--text-muted);
}

/* Page Hero */
.page-hero {
    padding: 100px 0 50px;
    text-align: center;
    background: var(--bg-section);
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto;
}

/* Blog Card */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
}

.blog-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-body { padding: 25px; }

.blog-body .date {
    font-size: 12px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-body h3 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-size: 20px;
    margin: 10px 0;
}

.blog-body p { font-size: 14px; margin-bottom: 15px; }

.blog-body .read-more {
    color: var(--primary);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-body .read-more:hover { color: var(--text-light); }

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    color: var(--bg-dark);
    border: none;
    font-size: 18px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover { background: var(--primary-dark); }

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Camera shutter pulse */
@keyframes shutterPulse {
    0% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(1); opacity: 0.6; }
}
.shutter-icon {
    display: inline-block;
    font-size: 18px;
    animation: shutterPulse 2s ease-in-out infinite;
    margin-right: 8px;
}

/* Ken Burns slow zoom on hero slides */
@keyframes kenBurns {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}
.hero-slide.active {
    animation: kenBurns 8s ease-in-out forwards;
}

/* Lens aperture spin on hover for portfolio cards */
@keyframes apertureSpin {
    0% { transform: rotate(0deg) scale(0.8); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: rotate(180deg) scale(1.2); opacity: 0; }
}
.portfolio-card:hover .portfolio-overlay::before {
    content: "\f030";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 40px;
    color: var(--primary);
    animation: apertureSpin 0.8s ease-out forwards;
    z-index: 2;
}

/* Film grain overlay on hero */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

/* Flash effect on page load */
@keyframes cameraFlash {
    0% { background: #fff; opacity: 1; }
    100% { background: transparent; opacity: 0; }
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 99999;
    pointer-events: none;
    animation: cameraFlash 0.4s ease-out forwards;
}

/* Responsive */
@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .pricing-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-dark);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .nav.open { display: flex; }

    .nav .dropdown-menu {
        position: static;
        display: none;
        background: transparent;
        border: none;
        padding-left: 20px;
    }

    .nav .dropdown.open .dropdown-menu { display: block; }

    .hero h1 { font-size: 36px; }
    .hero p { font-size: 16px; }
    .hero { height: 80vh; min-height: 500px; }

    .section { padding: 60px 0; }
    .section-title { font-size: 30px; }

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

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .stat-number { font-size: 36px; }

    .pricing-grid { grid-template-columns: 1fr; }

    .footer-grid { grid-template-columns: 1fr; gap: 30px; }

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

    .page-hero h1 { font-size: 32px; }
    .page-hero { padding: 120px 0 60px; }

    .top-bar .social-links { display: none; }
    .top-bar .container { justify-content: center; }
}

@media (max-width: 480px) {
    .grid-4 { grid-template-columns: 1fr; }
    .hero h1 { font-size: 28px; }
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
}
