/* Global Styles */
:root {
    --primary: #ff0000; /* Pure Red */
    --primary-foreground: #fff;
    --background: #111;
    --foreground: #fff;
    --card: #1c1c1c;
    --border: #333;
    --text-muted: #a1a1aa;
}

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

html, body {
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
}

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

h1, h2, h3, h4, .font-heading {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    text-transform: uppercase;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s;
}

header.scrolled {
    background: rgba(0, 0, 0, 0.9);
    padding: 10px 0;
}

header .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 16px;
    width: 100%;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #fff;
    justify-self: start;
    min-width: 0;
}

.logo-box {
    background: var(--primary);
    color: var(--primary-foreground);
    padding: 5px 10px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 1.2rem;
}

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

.logo-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    flex-shrink: 0;
}

.logo-text .main {
    font-size: 1.1rem;
    font-weight: 800;
    line-height: 1;
}

.logo-text .sub {
    font-size: 0.7rem;
    color: var(--primary);
    letter-spacing: 1px;
}

nav {
    justify-self: center;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    justify-content: center;
}

nav ul a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}

nav ul a:hover, nav ul a.active {
    color: var(--primary);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary);
    color: var(--primary-foreground);
    border: none;
}

.btn-primary:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.hero {
    position: relative;
    height: auto;
    display: flex;
    align-items: center;
    overflow: hidden;
    aspect-ratio: 16 / 12;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.hero-bg .overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.10) 0%,
            rgba(0, 0, 0, 0.08) 35%,
            rgba(0, 0, 0, 0.18) 65%,
            rgba(0, 0, 0, 0.30) 100%
        ),
        radial-gradient(
            circle at 50% 50%,
            rgba(0, 0, 0, 0.02) 0%,
            rgba(0, 0, 0, 0.12) 55%,
            rgba(0, 0, 0, 0.32) 100%
        );
}

.hero-content {
    max-width: 700px;
    padding: 0 10px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

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

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

.sub-title {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-top: 10px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(234, 179, 8, 0.5);
}

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

.feature-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.2rem;
}

.feature-card p {
    padding: 0 20px 25px;
    color: var(--text-muted);
}

/* Footer */
footer {
    background: #0a0a0a;
    padding: 80px 0 30px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-info {
    max-width: 300px;
}

.footer-info p {
    margin-top: 20px;
    color: var(--text-muted);
}

.footer-links h4 {
    margin-bottom: 20px;
}

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

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul a {
    text-decoration: none;
    color: var(--text-muted);
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Page Hero */
.page-hero {
    padding: 150px 0 80px;
    background: #1a1a1a;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Content Sections */
.content-section, .gallery-section, .contact-section, .location-section {
    padding: 80px 0;
}

.about-grid, .contact-grid, .location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2, .contact-info h2, .location-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

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

.about-image img, .location-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Gallery Category Filter */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
    width: 100%;
    max-width: 100%;
}

.gallery-filter-btn {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--foreground);
    padding: 10px 20px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.gallery-filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.gallery-filter-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--primary-foreground);
}

/* Gallery Category Sections */
.gallery-category {
    margin-bottom: 70px;
    width: 100%;
    max-width: 100%;
}

.gallery-category-header {
    display: flex;
    align-items: baseline;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 15px;
    width: 100%;
    max-width: 100%;
    flex-wrap: wrap;
}

.gallery-category-header h2 {
    font-size: 1.5rem;
    color: var(--primary);
    white-space: normal;
    overflow-wrap: anywhere;
}

.gallery-category-count {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-family: 'Open Sans', sans-serif;
    text-transform: none;
    font-weight: 400;
}

.gallery-category-empty {
    color: var(--text-muted);
    font-style: italic;
    padding: 20px 0;
}

/* Gallery Grid Internal */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 30px;
    width: 100%;
    max-width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    height: 300px;
}

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

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item-broken-msg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card);
    color: var(--text-muted);
    font-size: 0.85rem;
    text-align: center;
    padding: 20px;
}

.gallery-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* Contact Form */
.info-item {
    margin-bottom: 25px;
}

.info-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 5px;
}

.info-item a {
    color: var(--foreground);
    text-decoration: none;
    transition: color 0.2s ease;
}

.info-item a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--card);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: #222;
    border: 1px solid var(--border);
    color: #fff;
    border-radius: 6px;
    font-family: inherit;
}

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

.address-box {
    background: var(--card);
    padding: 30px;
    border-radius: 12px;
    margin-top: 30px;
    border: 1px solid var(--border);
}

.address-box p {
    margin: 15px 0 25px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .about-grid, .contact-grid, .location-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .gallery-item {
        height: 240px;
    }

    .gallery-category-header {
        gap: 10px;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }
}

/* Mobile Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background: var(--card);
    z-index: 2000;
    padding: 80px 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-left: 1px solid var(--border);
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
}

.side-menu.active {
    right: 0;
}

.side-menu ul {
    list-style: none;
}

.side-menu ul li {
    margin-bottom: 25px;
}

.side-menu ul a {
    text-decoration: none;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.side-menu ul a:hover, .side-menu ul a.active {
    color: var(--primary);
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* WhatsApp Bubble */
.whatsapp-bubble {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1500;
    transition: transform 0.3s;
}

.whatsapp-bubble:hover {
    transform: scale(1.1);
}

/* Mobile Responsive */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 2100;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 600px) {
    .container {
        padding: 0 16px;
    }

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

    .logo {
        flex: 1 1 auto;
        min-width: 0;
    }

    .header-actions {
        justify-self: auto;
        margin-left: auto;
    }

    nav {
        display: none;
    }
    
    .btn-phone {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }

    header {
        padding: 16px 0;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
        aspect-ratio: auto;
        padding: 96px 0 48px;
        display: flex;
        align-items: center;
    }

    .hero .container {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .hero-content {
        width: 100%;
        max-width: 560px;
        margin: 0 auto;
        padding: 0 6px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .badge {
        margin-bottom: 14px;
    }

    .hero h1 {
        font-size: 2rem;
        line-height: 1.1;
        margin-bottom: 14px;
    }

    .hero p {
        font-size: 0.92rem;
        line-height: 1.6;
        margin-bottom: 22px;
        max-width: 100%;
    }

    .hero-btns {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 12px;
        width: 100%;
    }

    .hero-btns .btn {
        width: min(320px, 100%);
        text-align: center;
        padding: 12px 18px;
    }

    .gallery-grid {
        gap: 16px;
    }

    .gallery-item {
        height: 220px;
    }

    .gallery-filter-btn {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }

    .stats {
        padding: 56px 0 48px;
        margin-top: 0;
    }

    .stats-grid {
        gap: 28px;
    }

    .stat-value {
        font-size: 2.4rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    header {
        padding: 12px 0;
    }

    .logo {
        gap: 8px;
    }

    .logo-box {
        padding: 4px 8px;
        font-size: 1rem;
    }

    .logo-text .main {
        font-size: 0.95rem;
    }

    .logo-text .sub {
        font-size: 0.62rem;
    }

    .hero {
        height: 100vh;
        min-height: 100vh;
        padding: 84px 0 36px;
    }

    .hero .container {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .hero-content {
        padding: 0 2px;
        max-width: 100%;
    }

    .badge {
        font-size: 0.62rem;
        padding: 4px 10px;
        margin-bottom: 12px;
    }

    .hero h1 {
        font-size: 1.9rem;
        line-height: 1.1;
        margin-bottom: 12px;
    }

    .hero p {
        font-size: 0.88rem;
        line-height: 1.5;
        margin-bottom: 18px;
    }

    .hero-btns {
        gap: 10px;
    }

    .hero-btns .btn {
        width: 100%;
        padding: 11px 14px;
        font-size: 0.82rem;
    }

    .stats {
        padding: 48px 0;
        margin-top: 0;
    }

    .stats-grid {
        gap: 22px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}

/* Admin Panel */
.admin-login-trigger {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 10px;
    height: 10px;
    opacity: 0;
    cursor: default;
    z-index: 9999;
}

.admin-panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    background: #1a1a1a;
    border: 2px solid var(--primary);
    border-radius: 15px;
    z-index: 3000;
    padding: 40px;
    display: none;
    overflow-y: auto;
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
}

.admin-panel.active {
    display: block;
}

.admin-panel h2 {
    color: var(--primary);
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.close-admin {
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
}

.admin-card {
    background: #222;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.admin-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 10px;
}

.admin-card label {
    display: block;
    background: var(--primary);
    color: #000;
    padding: 8px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 10px;
}

.admin-card input[type="file"] {
    display: none;
}

.admin-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: right;
}

/* Stats Section */
.stats {
    background: #1a1a1a;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
    background: #0a0a0a;
}

.glass-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--primary);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.glass-badge .p-val {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.glass-badge .p-txt {
    font-size: 0.7rem;
    color: #fff;
}

.reasons-grid {
    margin-top: 30px;
    display: grid;
    gap: 20px;
}

.reason-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #1a1a1a;
    padding: 20px;
    border-radius: 10px;
}

.reason-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.reason-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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