/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Email link styling */
a[href^="mailto:"] {
    color: #c700d1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

a[href^="mailto:"]:hover {
    color: #a6009f;
    border-bottom: 1px solid #c700d1;
    transform: translateY(-1px);
}

/* Phone link styling */
a[href^="tel:"] {
    color: #c700d1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

a[href^="tel:"]:hover {
    color: #a6009f;
    border-bottom: 1px solid #c700d1;
    transform: translateY(-1px);
}

/* Header and Navigation */
header {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    height: 70px;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
}

.logo-text {
    color: #fff;
}

.logo-highlight {
    color: #c700d1;
    font-weight: 800;
}

.desktop-nav {
    display: flex;
    list-style: none;
    gap: 1.2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 0.97rem;
}

.desktop-nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.45rem 0.7rem;
    border-radius: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: #c700d1;
    background-color: rgba(199, 0, 209, 0.1);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #fff;
}

/* Hero Section */
#hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 0 1rem;
    margin-top: -80px;
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    opacity: 1;
    background: #000;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    font-weight: 300;
    letter-spacing: 1px;
}

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

.cta-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.cta-button.primary {
    background-color: #c700d1;
    color: #000;
    box-shadow: 0 4px 15px rgba(199, 0, 209, 0.3);
}

.cta-button.secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid #c700d1;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.cta-button.primary:hover {
    background-color: #a6009f;
}

.cta-button.secondary:hover {
    background-color: rgba(199, 0, 209, 0.1);
}

/* Services Section */
#services {
    padding: 8rem 1rem;
    background-color: #000;
    color: #fff;
    position: relative;
}

#services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #c700d1, transparent);
}

#services h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

#services h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c700d1;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid rgba(199, 0, 209, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(199, 0, 209, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: #c700d1;
}

.service-icon {
    width: 90px;
    height: 90px;
    background-color: rgba(199, 0, 209, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 2px solid #c700d1;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotateY(180deg);
    background-color: rgba(199, 0, 209, 0.2);
}

.service-card i {
    color: #c700d1;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.service-card:hover i {
    transform: rotateY(-180deg);
}

.service-card h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-card p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    padding: 0 1rem;
}

.service-features li {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0.8rem;
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    color: #c700d1;
    margin-right: 8px;
}

.service-link {
    color: #c700d1;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #c700d1;
    border-radius: 5px;
}

.service-link:hover {
    color: #000;
    background-color: #c700d1;
    transform: translateY(-2px);
}

/* Gallery Section */
#gallery {
    padding: 8rem 1rem;
    background-color: #111;
    color: #fff;
    position: relative;
}

#gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #c700d1, transparent);
}

#gallery h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

#gallery h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c700d1;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 2px;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    max-width: 1800px;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 0 20px;
}

.gallery-item {
    background: #222;
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.25);
    overflow: hidden;
    flex: 0 1 500px;
    max-width: 580px;
    min-width: 400px;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 22px;
    z-index: -1;
    background: linear-gradient(120deg, #c700d1, #00eaff, #c700d1 80%);
    background-size: 200% 200%;
    filter: blur(4px) brightness(1.2);
    opacity: 0.7;
    animation: neonPulse 2.5s linear infinite;
}

.gallery-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.card-1 {
    transform: scale(0.92) perspective(800px) rotateZ(-8deg) translateY(40px) translateX(-30px);
    z-index: 2;
}

.card-2 {
    transform: scale(0.96) perspective(800px) rotateZ(0deg) translateY(0px) translateX(0px);
    z-index: 3;
}

.card-3 {
    transform: scale(0.92) perspective(800px) rotateZ(8deg) translateY(40px) translateX(30px);
    z-index: 2;
}

.our-work-section.in-view .gallery-item {
    opacity: 1;
    transform: scale(1.04) perspective(800px) rotateZ(0deg) translateY(0px) translateX(0px);
    border-color: #c700d1;
}

.gallery-item:hover .card-overlay {
    opacity: 1;
}

.gallery-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-top: 36px;
}

.view-more-btn {
    color: rgba(255,255,255,0.8);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(199, 0, 209, 0.2);
    padding: 0.7rem 2rem;
    border-radius: 10px;
    font-weight: 400;
    font-size: 1.1rem;
    cursor: pointer;
    letter-spacing: normal;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    outline: none;
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 0;
    line-height: 1.8;
}

.view-more-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(199, 0, 209, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.view-more-btn span {
    position: relative;
    z-index: 2;
}

.view-more-btn:hover, .view-more-btn:focus {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: #c700d1;
}

.view-more-btn:hover::before {
    transform: translateX(100%);
}

.instagram-btn {
    color: rgba(255,255,255,0.8);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(199, 0, 209, 0.2);
    padding: 0.7rem 2rem;
    border-radius: 10px;
    font-weight: 400;
    font-size: 1.1rem;
    cursor: pointer;
    letter-spacing: normal;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    outline: none;
    margin: 0 0.5rem;
    position: relative;
    overflow: hidden;
    z-index: 0;
    line-height: 1.8;
}

.instagram-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(199, 0, 209, 0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.instagram-btn span {
    position: relative;
    z-index: 2;
}

.instagram-btn:hover, .instagram-btn:focus {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border-color: #c700d1;
}

.instagram-btn:hover::before {
    transform: translateX(100%);
}

@media (max-width: 1600px) {
    .gallery-grid {
        max-width: 1400px;
        gap: 30px;
    }
    .gallery-item {
        flex: 0 1 420px;
        max-width: 480px;
        min-width: 360px;
    }
}

@media (max-width: 1200px) {
    .gallery-grid {
        max-width: 1100px;
        gap: 25px;
    }
    .gallery-item {
        flex: 0 1 340px;
        max-width: 380px;
        min-width: 300px;
    }
}

@media (max-width: 900px) {
    .gallery-grid {
        gap: 20px;
    }
    .gallery-item {
        flex: 1 1 300px;
        max-width: 100%;
        min-width: 220px;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        flex-direction: column;
        gap: 18px;
    }
    .gallery-item {
        max-width: 100%;
        min-width: 160px;
    }
}

/* About Section */
#about {
    padding: 8rem 1rem;
    background-color: #000;
    color: #fff;
    position: relative;
}

#about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #c700d1, transparent);
}

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

.about-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.about-content h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c700d1;
    margin-top: 20px;
    border-radius: 2px;
}

.about-content p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(199, 0, 209, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
    border-color: #c700d1;
}

.stat-number {
    color: #c700d1;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(199, 0, 209, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #c700d1;
}

.feature i {
    color: #c700d1;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature:hover i {
    transform: scale(1.1);
}

.feature h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.feature p {
    color: rgba(255,255,255,0.8);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Center the Quick Service card in the about-features grid */
.about-features .feature:nth-child(3) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Contact Section */
#contact {
    padding: 8rem 1rem;
    background-color: #111;
    color: #fff;
    position: relative;
}

#contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #c700d1, transparent);
}

#contact h2 {
    text-align: center;
    margin-bottom: 4rem;
    color: #fff;
    font-size: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

#contact h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #c700d1;
    margin: 0 auto;
    margin-top: 20px;
    border-radius: 2px;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(199, 0, 209, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    border-color: #c700d1;
}

.info-item i {
    color: #c700d1;
    font-size: 1.8rem;
    margin-right: 1rem;
}

.info-item:hover i {
    transform: scale(1.1);
}

.info-item h3 {
    color: #fff;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 0;
}

/* Enhanced email link styling within info items */
.info-item a[href^="mailto:"] {
    color: #c700d1;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(199, 0, 209, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.info-item a[href^="mailto:"]:hover {
    color: #fff;
    border-bottom: 1px solid #c700d1;
    background-color: rgba(199, 0, 209, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    transform: translateY(-1px);
}

/* Enhanced phone link styling within info items */
.info-item a[href^="tel:"] {
    color: #c700d1;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(199, 0, 209, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.info-item a[href^="tel:"]:hover {
    color: #fff;
    border-bottom: 1px solid #c700d1;
    background-color: rgba(199, 0, 209, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    transform: translateY(-1px);
}

.info-subtext {
    font-size: 0.8rem;
    color: #c700d1;
    margin-top: 0.2rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    border: 1px solid rgba(199, 0, 209, 0.2);
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(199, 0, 209, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    color: #fff;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #c700d1;
    background: rgba(255, 255, 255, 0.1);
}

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

.submit-button {
    background-color: #c700d1;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
}

.submit-button:hover {
      background-color: #a6009f;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(199, 0, 209, 0.3);
  }

/* Footer */
footer {
    background-color: #000;
    color: white;
    padding: 6rem 1rem 1rem;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, #c700d1, transparent);
}

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

.footer-section h3 {
    color: #c700d1;
    margin-bottom: 1.5rem;
    position: relative;
    font-size: 1.3rem;
}

.footer-section h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #c700d1;
    margin-top: 10px;
    border-radius: 2px;
}

.footer-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 1rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #c700d1;
    transform: translateX(5px);
}

/* Enhanced email link styling in footer */
.footer-section a[href^="mailto:"] {
    color: #c700d1;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(199, 0, 209, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a[href^="mailto:"]:hover {
    color: #fff;
    border-bottom: 1px solid #c700d1;
    background-color: rgba(199, 0, 209, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

/* Enhanced phone link styling in footer */
.footer-section a[href^="tel:"] {
    color: #c700d1;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(199, 0, 209, 0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section a[href^="tel:"]:hover {
    color: #fff;
    border-bottom: 1px solid #c700d1;
    background-color: rgba(199, 0, 209, 0.1);
    padding: 2px 4px;
    border-radius: 3px;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.social-links a {
    color: #c700d1;
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.footer-social a {
    color: #aaa;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: #c700d1;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-form {
        order: 1;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

#simulator {
    padding: 6rem 1rem 4rem 1rem;
    background: #181818;
    color: #fff;
    text-align: center;
}

#simulator h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c700d1;
}

.simulator-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.car-simulator {
    width: 100%;
    max-width: 600px;
    background: #222;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3);
    padding: 2rem 1rem 1.5rem 1rem;
}

#car-svg {
    width: 100%;
    height: auto;
    display: block;
}

.tint-controls {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    background: #222;
    border-radius: 12px;
    padding: 1.5rem 1rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.tint-controls label {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    display: block;
}

#tint-range {
    width: 100%;
    height: 4px;
    outline: none;
    accent-color: #c700d1;
}

#tint-value {
    color: #c700d1;
    font-size: 1.5rem;
    display: block;
    margin-top: 1rem;
}

.tint-percentages {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    color: #aaa;
    margin-top: 0.5rem;
}

@media (max-width: 700px) {
    .simulator-container {
        padding: 0 0.5rem;
    }
    .car-simulator {
        padding: 1rem 0.2rem 1rem 0.2rem;
    }
}

/* --- Our Work Section Modern Styles --- */
.our-work-section {
  background: linear-gradient(135deg, #181818 80%, #232323 100%);
  padding: 60px 0 80px 0;
  text-align: center;
}

.our-work-section h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.gallery-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  max-width: 1800px;
  margin: 0 auto;
  flex-wrap: wrap;
  padding: 0 20px;
}

.gallery-item {
  background: #222;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  overflow: hidden;
  flex: 0 1 500px;
  max-width: 580px;
  min-width: 400px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}

.gallery-item::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  z-index: -1;
  background: linear-gradient(120deg, #c700d1, #00eaff, #c700d1 80%);
  background-size: 200% 200%;
  filter: blur(4px) brightness(1.2);
  opacity: 0.7;
  animation: neonPulse 2.5s linear infinite;
}

.gallery-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.card-1 {
  transform: scale(0.92) perspective(800px) rotateZ(-8deg) translateY(40px) translateX(-30px);
  z-index: 2;
}

.card-2 {
  transform: scale(0.96) perspective(800px) rotateZ(0deg) translateY(0px) translateX(0px);
  z-index: 3;
}

.card-3 {
  transform: scale(0.92) perspective(800px) rotateZ(8deg) translateY(40px) translateX(30px);
  z-index: 2;
}

.our-work-section.in-view .gallery-item {
  opacity: 1;
  transform: scale(1.04) perspective(800px) rotateZ(0deg) translateY(0px) translateX(0px);
  border-color: #c700d1;
}

@media (max-width: 1600px) {
  .gallery-grid {
    max-width: 1400px;
    gap: 30px;
  }
  .gallery-item {
    flex: 0 1 420px;
    max-width: 480px;
    min-width: 360px;
  }
}

@media (max-width: 1200px) {
  .gallery-grid {
    max-width: 1100px;
    gap: 25px;
  }
  .gallery-item {
    flex: 0 1 340px;
    max-width: 380px;
    min-width: 300px;
  }
}

@media (max-width: 900px) {
  .gallery-grid {
    gap: 20px;
  }
  .gallery-item {
    flex: 1 1 300px;
    max-width: 100%;
    min-width: 220px;
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    flex-direction: column;
    gap: 18px;
  }
  .gallery-item {
    max-width: 100%;
    min-width: 160px;
  }
}

/* --- End Our Work Section Styles --- */

/* --- 3D Stacked Cards & Cinematic Reveal --- */
.our-work-section .gallery-grid {
  position: relative;
}
.gallery-item {
  opacity: 0;
  transform: scale(0.92) perspective(800px) rotateZ(-6deg) translateY(40px);
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1),
              transform 0.9s cubic-bezier(.77,0,.18,1);
  z-index: 1;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border: 2.5px solid transparent;
}
.card-1 {
  transform: scale(0.92) perspective(800px) rotateZ(-8deg) translateY(40px) translateX(-30px);
  z-index: 2;
}
.card-2 {
  transform: scale(0.96) perspective(800px) rotateZ(0deg) translateY(0px) translateX(0px);
  z-index: 3;
}
.card-3 {
  transform: scale(0.92) perspective(800px) rotateZ(8deg) translateY(40px) translateX(30px);
  z-index: 2;
}
.our-work-section.in-view .gallery-item {
  opacity: 1;
  transform: scale(1.04) perspective(800px) rotateZ(0deg) translateY(0px) translateX(0px);
  border-color: #c700d1;
}
.our-work-section.in-view .card-1 {
  transition-delay: 0.1s;
}
.our-work-section.in-view .card-2 {
  transition-delay: 0.25s;
}
.our-work-section.in-view .card-3 {
  transition-delay: 0.4s;
}
/* --- End 3D Stacked Cards & Cinematic Reveal --- */

/* --- Animated Neon/Gradient Outline for Our Work Cards --- */
.gallery-item {
  position: relative;
  z-index: 1;
}
.gallery-item::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 22px;
  z-index: -1;
  background: linear-gradient(120deg, #c700d1, #00eaff, #c700d1 80%);
  background-size: 200% 200%;
  filter: blur(4px) brightness(1.2);
  opacity: 0.7;
  animation: neonPulse 2.5s linear infinite;
}
@keyframes neonPulse {
  0% {
    background-position: 0% 50%;
    opacity: 0.7;
    filter: blur(4px) brightness(1.2);
  }
  50% {
    background-position: 100% 50%;
    opacity: 1;
    filter: blur(6px) brightness(1.5);
  }
  100% {
    background-position: 0% 50%;
    opacity: 0.7;
    filter: blur(4px) brightness(1.2);
  }
}
/* --- End Animated Neon/Gradient Outline --- */

/* --- Cinematic Reveal Overlay for Our Work Cards --- */
.card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 18px;
  background: rgba(30, 0, 40, 0.55);
  backdrop-filter: blur(8px) saturate(1.2);
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s cubic-bezier(.77,0,.18,1),
              transform 0.9s cubic-bezier(.77,0,.18,1);
}
.our-work-section.in-view .gallery-item .card-overlay {
  opacity: 0;
  transform: translateY(-40px);
  transition-delay: 0.2s;
}
/* --- End Cinematic Reveal Overlay --- */

/* --- Gallery Actions Buttons --- */
.gallery-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-top: 36px;
}
/* View More Button styles moved to earlier definition */
/* Old Instagram button styling removed - now using unified button styling */
/* --- End Gallery Actions Buttons --- */

/* --- Modal Gallery Styles --- */
.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.gallery-modal.active {
  display: flex;
}

.gallery-modal-content {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  margin: 20px;
}

.gallery-modal-media {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.gallery-modal-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  transition: transform 0.2s;
}

.gallery-modal-close:hover {
  transform: scale(1.1);
}

.gallery-modal-prev,
.gallery-modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 16px;
  border-radius: 50%;
  transition: all 0.2s;
}

.gallery-modal-prev {
  left: -60px;
}

.gallery-modal-next {
  right: -60px;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.1);
}

@media (max-width: 768px) {
  .gallery-modal-prev {
    left: 10px;
  }
  
  .gallery-modal-next {
    right: 10px;
  }
  
  .gallery-modal-close {
    top: -50px;
  }
}
/* --- End Modal Gallery Styles --- */

@media (min-width: 900px) {
  .about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
  }
  .about-features .feature:nth-child(3) {
    grid-column: 1 / span 2;
    max-width: 500px;
    margin: 0 auto;
  }
}

/* Style select and option elements for dark mode */
select, select option {
    background-color: #222 !important;
    color: #fff !important;
    border: 1px solid #c700d1;
}

select:focus {
    outline: 2px solid #c700d1;
}

/* For better cross-browser support, also target option directly */
option {
    background-color: #222 !important;
    color: #fff !important;
}

/* Removed conflicting mobile nav styles - handled by mobile-styles.css */ 