/* styles.css */
:root {
    --primary-red: #dc2626;
    --dark-bg: #0f0f0f;
    --card-bg: #1a1a1a;
    --text-light: #e5e5e5;
    --text-muted: #b8b8b8;
    --accent-red: #ef4444;
    --hover-red: #b91c1c;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    background-color: var(--dark-bg);
    color: var(--text-light);
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}
.orbitron {
    font-family: 'Orbitron', monospace;
}

/* Navigation */
.navbar {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-bottom: 2px solid var(--primary-red);
    padding: 1rem 0;
    position: relative;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}
.navbar-brand {
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--primary-red) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-brand i {
    font-size: 2rem;
    animation: pulse 2s infinite;
}
.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    margin: 0 1rem;
    padding: 0.5rem 1rem !important;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.navbar-nav .nav-link:hover {
    background: var(--primary-red);
    color: white !important;
    transform: translateY(-2px);
}
.navbar-nav .nav-link.active {
    background: var(--primary-red);
    color: white !important;
}
  .navbar-toggler {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
  }

  .navbar-toggler:focus,
  .navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }

.navbar-toggler-icon {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 30 30"><path stroke="dc2626" stroke-width="2" d="M4 7h22M4 15h22M4 23h22"/></svg>');
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 50%, #0f0f0f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23dc2626" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-content a{
    margin-bottom: 3rem;
}
.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary-red), var(--accent-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out;
}
.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
    animation: fadeInUp 1s ease-out 0.3s both;
}
.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.6s both;
}
.btn-primary {
    background: linear-gradient(45deg, var(--primary-red), var(--accent-red));
    border: none;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: all 0.3s ease;
    animation: fadeInUp 1s ease-out 0.9s both;
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.4);
}

/* Image Placeholder */
.image-placeholder {
    background: linear-gradient(135deg, var(--card-bg), #2a2a2a);
    border: 2px dashed var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--text-muted);
    font-size: 1.2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.2), transparent);
    animation: shimmer 2s infinite;
}
.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

/* Features Section */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
}
.section-title {
    font-size: 3rem;
    font-weight: 900;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}
.feature-card {
    background: var(--card-bg);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-red));
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(220, 38, 38, 0.3);
    border-color: var(--primary-red);
}
.feature-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}
.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light);
}
.feature-description {
    color: var(--text-muted);
    font-size: 1rem;
}
.margin-bottom {
    margin-bottom: 1.5rem;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: var(--dark-bg);
}
.stat-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--card-bg), #252525);
    border: 1px solid #333;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.2);
}
.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}
.stat-number i{
    height: 0.5em;
    width: 0.5em;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    margin-left: 1rem;
}
.stat-label {
    font-size: 1.1rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Footer */
.footer {
    background: #0a0a0a;
    border-top: 2px solid var(--primary-red);
    padding: 50px 0 20px;
}
.footer-content {
    display: grid;
    /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
    gap: 2rem;
    margin-bottom: 2rem;
}
.footer-section div{
    padding: 0.5rem;
}
.footer-section h4 {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.footer-section h5 {
    color: var(--text-light);
    font-weight: 1000;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}
.footer-section p, .footer-section a {
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}
.footer-section a:hover {
    color: var(--primary-red);
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-links img {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.social-links a:hover {
    background: var(--hover-red);
    transform: translateY(-2px);
}
.col-4 div{
    margin-top: 0;
    margin-bottom: 0;
}
/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}
@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .section-title { font-size: 2rem; }
    .navbar-nav .nav-link { margin: 0.2rem 0; }
}

/* Page-specific content (hidden by default) */
.page-content {
    display: none;
    min-height: 80vh;
    padding: 100px 0 50px;
}
.page-content.active {
    display: block;
}

/* Branches specific styles */
.branch-card {
    background: var(--card-bg);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
}
.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.2);
    border-color: var(--primary-red);
}
.branch-header {
    border-bottom: 2px solid var(--primary-red);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}
.branch-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}
.branch-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}
.info-item i {
    color: var(--primary-red);
    width: 20px;
}
.info-item a {
    color: var(--text-light);
    text-decoration: none;
}
.info-item a:hover {
    color: var(--primary-red);
}

/* Gallery styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}
.gallery-item {
    background: var(--card-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #333;
}
.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(220, 38, 38, 0.2);
}
.gallery-placeholder {
    height: 200px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    border-bottom: 2px solid var(--primary-red);
}
.gallery-info {
    padding: 1rem;
}
.gallery-title {
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}
.gallery-description {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* FAQ styles */
.faq-item {
    background: var(--card-bg);
    border: 1px solid #333;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}
.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    background: linear-gradient(135deg, var(--card-bg), #252525);
    border: none;
    width: 100%;
    text-align: left;
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.faq-question:hover {
    background: linear-gradient(135deg, #252525, var(--card-bg));
    color: var(--primary-red);
}
.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-muted);
}
.faq-answer.active {
    padding: 1.5rem;
    max-height: 200px;
}
.faq-icon {
    transition: transform 0.3s ease;
}
.faq-icon.rotated {
    transform: rotate(180deg);
}