/* ===================================================================
   Da Laser Guy - Main Stylesheet
   Professional CSS architecture for SEO-optimized website
   =================================================================== */

/* ===================================================================
   RESET & BASE STYLES
   =================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* ===================================================================
   TYPOGRAPHY
   =================================================================== */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: #8a4fb3;
    text-decoration: none;
}

a:hover {
    color: #6a3a8a;
}

/* ===================================================================
   LAYOUT & CONTAINER
   =================================================================== */

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




.navbar {
    background: linear-gradient(135deg, #2c1a3a 0%, #6a2c91 100%) !important;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white !important;
    text-decoration: none;
    transition: opacity 0.3s ease;
}



.navbar-brand:hover {
    opacity: 0.9;
    color: white !important;
}



.logo-image {
    height: 40px;
    width: auto;
    max-width: none;
    object-fit: contain;
    mask-image: radial-gradient(circle, black 90%, transparent 10%);
    mask-size: cover;
    mask-position: center;
    mask-repeat: no-repeat;
}



.logo-text {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    margin: 0;
}




.navbar-nav .nav-link {
    color: white !important;
    padding: 10px 15px !important;
    border-radius: 5px;
    transition: background 0.3s ease;
    margin: 0 5px;
}



.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.2) !important;
    color: white !important;
}



.navbar-nav .nav-link.active {
    background: rgba(255, 255, 255, 0.3) !important;
}




.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 4px 8px;
}



.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.25);
}



.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    background: rgba(0, 0, 0, 0.8);
    border-radius: 10px;
    margin-top: 10px;
    padding: 15px;
}

@media (min-width: 992px) {
    .navbar-collapse {
        background: transparent;
        margin-top: 0;
        padding: 0;
    }
}



.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}



.logo-link:hover {
    opacity: 0.9;
    color: white;
}




.contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}



.contact-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
}





.hero {
    position: relative;
    color: white;
    text-align: center;
    padding: 0;
    min-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
}



.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%) scale(0.85);
    z-index: 1;
    object-fit: cover;
    display: block;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}



.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 80px;
    padding-bottom: 40px;
}



.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}



.hero-content h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}



.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}




.page-header {
    color: white;
    padding: 150px 0 100px;
    text-align: center;
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #6a2c91 0%, #7d3f98 100%);
}



.page-header .container {
    width: 100%;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}



.page-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}





.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}



.cta-button:hover {
    background: #c0392b;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}



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



.cta-button.secondary:hover {
    background: white;
    color: #2c3e50;
}



.cta-button.white {
    background: white;
    color: #e74c3c;
}



.cta-button.white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}





.content-section {
    padding: 80px 0;
}



.content-section.white {
    background: white;
}



.content-section.gray {
    background: #f8f9fa;
}



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



.section-header h2 {
    font-size: 2.5rem;
    color: #2c1a3a;
    margin-bottom: 1rem;
}



.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}





.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}




.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 4px solid #6a2c91;
}



.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}



.service-icon {
    width: 100%;
    height: 200px;
    background: #6a2c91;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
    overflow: hidden;
    border: 3px solid #6a2c91;
}



.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}



.service-card.red .service-icon {
    background: #e74c3c;
}



.service-card.red {
    border-top-color: #e74c3c;
}



.service-card.green .service-icon {
    background: #27ae60;
}



.service-card.green {
    border-top-color: #27ae60;
}





.feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}



.feature-icon {
    width: 60px;
    height: 60px;
    background: #e74c3c;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}



.feature-content h4 {
    color: #2c1a3a;
    margin-bottom: 10px;
    font-size: 1.3rem;
}



.feature-content p {
    color: #666;
    line-height: 1.6;
}





.column h3 {
    color: #2c1a3a;
    font-size: 1.8rem;
    margin-bottom: 20px;
}



.column p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}



.column ul {
    list-style: none;
    padding: 0;
}



.column ul li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #666;
}



.column ul li:last-child {
    border-bottom: none;
}



.column ul li strong {
    color: #2c1a3a;
}



.service-features {
    list-style: none;
    padding: 0;
}



.service-features li {
    padding: 8px 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}



.service-features li:last-child {
    border-bottom: none;
}



.service-features li::before {
    content: "✓";
    color: #6a2c91;
    font-weight: bold;
    margin-right: 10px;
}





.service-areas {
    padding: 80px 0;
    background: white;
}



.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}



.area-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #6a2c91;
}



.area-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    background: white;
}



.area-item h4 {
    color: #2c1a3a;
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: bold;
}



.area-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}





.faq-section {
    padding: 80px 0;
    background: white;
}



.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    margin-top: 50px;
}



.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #e74c3c;
    transition: all 0.3s ease;
}



.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}



.faq-item h4 {
    color: #2c1a3a;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: bold;
}



.faq-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}





.cta-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}



.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}



.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}



footer,
.footer {
    background: linear-gradient(135deg, #2c1a3a 0%, #6a2c91 100%) !important;
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand img {
    border-radius: 50%;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: #ecf0f1;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #8a4fb3;
    color: white;
    transform: translateY(-2px);
}

.footer .contact-info p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer .contact-info a {
    color: #ecf0f1;
    text-decoration: none;
}

.footer .contact-info a:hover {
    color: #8a4fb3;
}



.footer-section h4 {
    margin-bottom: 15px;
    color: #8a4fb3;
}



footer ul,
.footer-section ul,
.footer ul {
    list-style: none !important;
    padding-left: 0 !important;
}



.footer-section ul li,
.footer ul li {
    margin-bottom: 8px;
}



footer ul li a,
.footer-section ul li a,
.footer ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}



footer ul li a:hover,
.footer-section ul li a:hover,
.footer ul li a:hover {
    color: #8a4fb3;
}



.footer-bottom {
    border-top: 1px solid #3d1f4f;
    padding-top: 20px;
    color: #bdc3c7;
}



.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}





.cta-button:focus,
.main-nav a:focus,
a:focus {
    outline: 2px solid #6a2c91;
    outline-offset: 2px;
}


.two-column {
    grid-template-columns: 1fr;
    gap: 40px;
}



.logo-image {
    height: 35px;
}



.logo-text {
    font-size: 1.5rem;
}





.contact-info {
    justify-content: center;
}




.hero-content h1,
.page-header h1 {
    font-size: 2.5rem;
}



.hero-content h2 {
    font-size: 1.2rem;
}



.section-header h2 {
    font-size: 2rem;
}




.content-section {
    padding: 60px 0;
}



.section-header {
    margin-bottom: 40px;
}




.hero {
    min-height: 500px;
    padding: 80px 0;
}



.hero-overlay {

    background: rgba(0, 0, 0, 0.8);
}


.container {
    padding: 0 15px;
}



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



.cta-button {
    padding: 12px 24px;
    font-size: 1rem;
    margin: 5px;
}
