/* Custom Fonts */
@font-face {
    font-family: 'Breathe_Fire';
    src: url('../fonts/Breathe_Fire.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&display=swap');
    font-weight: normal;
    font-style: normal;
}

/* Bulldog Brothers Racing - Updated Style with Logo Colors */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:wght@400;600;700;900&display=swap');

/* Color Variables */
:root {
    --neon-green: #39FF14;
    --deep-purple: #4B0082;
    --dark-purple: #2D004D;
    --light-purple: #6A0DAD;
    --black: #000000;
    --white: #FFFFFF;
    --dark-gray: #1a1a1a;
    --light-gray: #f8f8f8;
}

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

body {
    font-family: 'Barlow', sans-serif;
    line-height: 1.6;
    color: var(--white);
    background-color: var(--black);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: 4rem;
    text-shadow: 0 0 10px var(--neon-green);
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Header Styles */
header {
    background: var(--deep-purple);
    color: var(--white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(57, 255, 20, 0.3);
}

.logo-container {
    display: inline-block;
    padding-left: 2rem;
}

.logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 5px var(--neon-green));
}

nav {
    display: inline-block;
    float: right;
    padding-right: 2rem;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: color 0.3s, text-shadow 0.3s;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
}

/* Hero Section */
.hero, .page-hero {
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
    position: relative;
}

.hero:before, .page-hero:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.8), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.page-hero {
    height: 50vh;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    margin-bottom: 1rem;
    font-family: 'Breathe_Fire', sans-serif;
    font-size: 2.5rem;
}

.hero-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 5px var(--neon-green);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--neon-green);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 15px var(--neon-green);
}

.cta-button:hover {
    background: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--neon-green);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
}

.cta-button.secondary:hover {
    background: var(--neon-green);
    color: var(--black);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Styles */
section {
    padding: 5rem 2rem;
}

section:nth-child(odd) {
    background-color: var(--black);
}

section:nth-child(even) {
    background-color: var(--dark-purple);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-top: -1rem;
    margin-bottom: 3rem;
    color: var(--neon-green);
}

/* Services Preview */
.services-preview {
    background-color: var(--dark-purple);
}

.services-preview h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--black);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--deep-purple);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--neon-green);
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--neon-green);
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--white);
}

.learn-more {
    display: inline-block;
    margin: 0 1.5rem 1.5rem;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.learn-more:hover {
    text-shadow: 0 0 10px var(--neon-green);
}

.view-all {
    display: block;
    text-align: center;
    margin-top: 3rem;
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.view-all:hover {
    text-shadow: 0 0 10px var(--neon-green);
}

/* Testimonials */
.testimonials {
    background: var(--black);
    position: relative;
}

.testimonials:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/texture-bg.jpg');
    opacity: 0.1;
    z-index: 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonial {
    padding: 2rem;
    background: rgba(75, 0, 130, 0.3);
    border-radius: 10px;
    border: 1px solid var(--deep-purple);
    margin-bottom: 1rem;
}

.testimonial p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial h4 {
    font-size: 1rem;
    color: var(--neon-green);
}

/* Featured Work */
.featured-work {
    background: var(--dark-purple);
}

.featured-work h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.project-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.project {
    background: var(--black);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--deep-purple);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--neon-green);
}

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

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    color: var(--neon-green);
    margin-bottom: 0.5rem;
}

.project-info p {
    color: var(--white);
    margin-bottom: 1rem;
}

.view-project {
    color: var(--neon-green);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.view-project:hover {
    text-shadow: 0 0 10px var(--neon-green);
}

/* About Page Styles */
.about-section, .mission-section, .team-section, .certifications-section, .facility-section {
    padding: 5rem 2rem;
}

.about-content, .service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-content.reverse, .service-content.reverse {
    direction: rtl;
}

.about-content.reverse .about-text, .service-content.reverse .service-text {
    direction: ltr;
}

.about-text p, .service-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image img, .service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--deep-purple);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-image img:hover, .service-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px var(--neon-green);
}

.mission-list, .service-list {
    list-style-type: none;
    margin: 1.5rem 0;
    padding: 0;
}

.mission-list li, .service-list li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.mission-list li:before, .service-list li:before {
    content: "•";
    color: var(--neon-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    text-shadow: 0 0 5px var(--neon-green);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--black);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--deep-purple);
    transition: transform 0.3s, box-shadow 0.3s;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--neon-green);
}

.team-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-info {
    padding: 1.5rem;
}

.team-title {
    color: var(--neon-green);
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.cert-item {
    background: var(--black);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--deep-purple);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cert-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--neon-green);
}

.cert-item i {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-green);
}

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

.facility-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--deep-purple);
}

.facility-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.facility-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.facility-item:hover .facility-overlay {
    transform: translateY(0);
}

.facility-overlay h4 {
    margin-bottom: 0.5rem;
    color: var(--neon-green);
}

.pricing-box {
    background: var(--black);
    border-left: 4px solid var(--neon-green);
    padding: 1.5rem;
    margin-top: 2rem;
    border-radius: 0 10px 10px 0;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.2);
}

.pricing-box h3 {
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.pricing-box p {
    margin-bottom: 0.5rem;
}

.benefits-section {
    background: url('../images/texture-bg.jpg'), var(--black);
    background-blend-mode: overlay;
    color: var(--white);
    text-align: center;
    position: relative;
}

.benefits-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
}

.benefits-section h2, .benefits-section .section-subtitle {
    position: relative;
    z-index: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.benefit-item {
    background: rgba(75, 0, 130, 0.3);
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s;
    border: 1px solid var(--deep-purple);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 20px var(--neon-green);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-green);
}

/* Gallery Page Styles */
.gallery-section {
    background: var(--black);
    position: relative;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.filter-btn {
    background: none;
    border: 2px solid var(--neon-green);
    color: var(--neon-green);
    padding: 0.5rem 1.5rem;
    margin: 0.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--neon-green);
    color: var(--black);
    box-shadow: 0 0 15px var(--neon-green);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--deep-purple);
}

.gallery-image {
    position: relative;
    overflow: hidden;
}

.gallery-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--neon-green);
}

.gallery-overlay p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.view-details {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--neon-green);
    color: var(--black);
    text-decoration: none;
    border-radius: 30px;
    font-size: 0.9rem;
    transition: all 0.3s;
    font-weight: 600;
}

.view-details:hover {
    background: var(--white);
    box-shadow: 0 0 15px var(--neon-green);
}

/* Project Modal Styles */
.project-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-content {
    background: var(--dark-purple);
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
    border: 1px solid var(--neon-green);
    box-shadow: 0 0 30px var(--neon-green);
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--neon-green);
    transition: all 0.3s;
}

.close-modal:hover {
    transform: scale(1.2);
    text-shadow: 0 0 10px var(--neon-green);
}

.modal-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.modal-gallery img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    border: 1px solid var(--deep-purple);
}

.project-details h3 {
    margin: 1.5rem 0 1rem;
    color: var(--neon-green);
}

.project-details ul {
    list-style-type: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.project-details ul li {
    margin-bottom: 0.5rem;
}

.testimonial-section {
    background: var(--dark-purple);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
}

.testimonial-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/texture-bg.jpg');
    opacity: 0.1;
    z-index: 0;
}

.testimonial-section h2 {
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

/* Contact Page Styles */
.contact-section {
    background: var(--black);
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info h2, .contact-form h2 {
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.contact-info h2:after, .contact-form h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--neon-green);
    box-shadow: 0 0 10px var(--neon-green);
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    display: flex;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--neon-green);
    margin-right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(57, 255, 20, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.contact-text h3 {
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: var(--neon-green);
}

.social-links {
    margin-top: 3rem;
}

.social-icons-large {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--deep-purple);
    color: var(--neon-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s;
    border: 1px solid var(--neon-green);
}

.social-icon:hover {
    background: var(--neon-green);
    color: var(--black);
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--neon-green);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--neon-green);
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--deep-purple);
    border-radius: 5px;
    font-family: 'Barlow', sans-serif;
    transition: all 0.3s;
    color: var(--white);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--neon-green);
    outline: none;
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

.submit-btn {
    background: var(--neon-green);
    color: var(--black);
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(57, 255, 20, 0.3);
}

.submit-btn:hover {
    background: var(--white);
    box-shadow: 0 0 20px var(--neon-green);
    transform: translateY(-3px);
}

.success-message {
    text-align: center;
    padding: 2rem;
}

.success-message i {
    font-size: 3rem;
    color: var(--neon-green);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-green);
}

.map-section {
    padding: 5rem 2rem;
    background: var(--dark-purple);
    position: relative;
}

.map-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/texture-bg.jpg');
    opacity: 0.1;
    z-index: 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--neon-green);
    position: relative;
    z-index: 1;
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--black);
    position: relative;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.faq-item {
    background: var(--dark-purple);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    border: 1px solid var(--deep-purple);
    transition: transform 0.3s, box-shadow 0.3s;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 15px var(--neon-green);
}

.faq-item h3 {
    margin-bottom: 1rem;
    color: var(--neon-green);
}

.cta-section {
    background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 5rem 2rem;
    position: relative;
}

.cta-section:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.7), rgba(0, 0, 0, 0.7));
    z-index: 0;
}

.cta-section h2, .cta-section p, .cta-buttons {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--neon-green);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Footer */
footer {
    background: var(--deep-purple);
    color: var(--white);
    padding: 3rem 2rem 1rem;
    position: relative;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-green);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 5px var(--neon-green));
}

.footer-contact h3,
.footer-hours h3,
.footer-social h3 {
    margin-bottom: 1rem;
    color: var(--neon-green);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
}

.footer-contact p,
.footer-hours p {
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    transition: all 0.3s;
}

.social-icons a:hover {
    transform: translateY(-3px);
    filter: drop-shadow(0 0 5px var(--neon-green));
}

.social-icons img {
    height: 30px;
    width: 30px;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-content h2 {
        font-size: 1.5rem;
    }
    
    nav {
        padding-right: 1rem;
    }
    
    nav ul li {
        margin-left: 1rem;
    }
    
    .about-content, .service-content, .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content.reverse, .service-content.reverse {
        direction: ltr;
    }
    
    .about-image, .service-image {
        order: -1;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .benefits-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .modal-gallery {
        grid-template-columns: 1fr;
    }
    
    .project-showcase {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0.5rem 0;
    }
    
    .logo-container {
        padding-left: 1rem;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    nav ul li {
        margin-left: 0;
    }
    
    .hero {
        margin-top: 120px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 1.2rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
    }
}

/* Animation Effects */
@keyframes neonPulse {
    0% {
        box-shadow: 0 0 5px var(--neon-green);
    }
    50% {
        box-shadow: 0 0 20px var(--neon-green);
    }
    100% {
        box-shadow: 0 0 5px var(--neon-green);
    }
}

.neon-effect {
    animation: neonPulse 2s infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--deep-purple);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-green);
}/* Business Name Styling */
.business-name {
    display: inline-block;
    vertical-align: middle;
    margin-left: 1rem;
    font-family: 'Breathe_Fire', sans-serif;
    font-size: 1.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green);
    line-height: 1.2;
    font-weight: normal;
}

/* Update description paragraphs to use Oswald font */
p, .service-text p, .project-details p, .about-text p, 
.contact-info p, footer p, .hero-content p, 
.service-list li, .testimonial p {
    font-family: 'Oswald', sans-serif !important;
    font-weight: 700;
}