@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --bg-color: #000000;
    --primary-color: #ea6512;
    --text-light: #ffffff;
    --text-muted: #aaaaaa;
    --card-bg: #101010;
    --border-color: #333333;
    
    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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


.fa-brands {
    font-family: "Font Awesome 6 Brands" !important;
}

.fa-solid {
    font-family: "Font Awesome 6 Free" !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-light);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

.bg-pattern {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, transparent 48%, rgba(255,255,255,0.02) 50%);
    background-size: 60px 60px;
    z-index: -1;
    pointer-events: none;
}

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



h1, h2, h3, h4 {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

h1 {
    font-size: clamp(2.5rem, 5vw + 1rem, 4rem);
    font-weight: 800;
    font-style: italic;
    line-height: 1.1;
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(1.8rem, 4vw + 0.5rem, 2.5rem);
    font-weight: 800;
    font-style: italic;
    text-align: center;
    margin-bottom: 40px;
}

section:target h2 {
    
    animation: glow-white-pulse 0.8s ease-out 0.5s;
}

@keyframes glow-white-pulse {
    0% {
        text-shadow: 0 0 10px #fff, 0 0 20px #fff, 0 0 40px #fff;
        color: #fff;
    }
    100% {
        text-shadow: none;
        color: inherit;
    }
}

.text-primary {
    color: var(--primary-color);
}

.section-label {
    color: var(--primary-color);
    text-align: center;
    font-weight: 700;
    margin-bottom: 5px;
    display: block;
}


.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #fff;
    padding: 10px 15px;
    font-size: 15px;
    text-decoration: none;
    font-weight: 900;
    font-family: var(--font-body);
    border-radius: 10px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #d1580e;
    transform: translateY(-2px);
}


header {
    padding: 20px 0;
    
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.logo-icon {
    height: 40px;
    width: auto;
    border-radius: 4px; 
    transition: transform 0.2s ease;
}

.logo-icon:hover {
    transform: scale(1.05);
}

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

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--primary-color);
}


.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 0;
    gap: 40px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-content h1 {
    font-weight: 900;
}

.hero-subtitle {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
    font-size: 0.9rem;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 400px;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    padding-right: 20px;
    padding-bottom: 20px;
}

.image-rotation-wrapper {
    position: relative;
    transform: rotate(6.18deg);
    display: inline-block;
}

.image-rotation-wrapper img {
    max-width: 100%;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    display: block;
}

.orange-bg {
    position: absolute;
    top: 10px;
    right: -6px;
    width: 90%;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 15px;
    z-index: 1;
    rotate: 0.5deg;
}

.badge {
    position: absolute;
    bottom: 0px;
    left: -50px;
    background-color: var(--primary-color);
    padding: 15px;
    border-radius: 10px;
    text-transform: uppercase;
    line-height: 1.2;
    z-index: 10;
    font-weight: 900;
    rotate: -2deg;
}


section {
    padding: 80px 0;
}


.pain-points-background {
    background-color: var(--card-bg);
    margin-bottom: 40px;
}

.pain-points-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pain-box {
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    width: 250px;
    max-width: 100%;
    background-color: var(--card-bg);
    transition: transform 0.3s ease;
}

.pain-box:hover {
    transform: translateY(-5px);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pain-box p {
    font-weight: 600;
    font-size: 1.1rem;
}

.pain-quote {
    text-align: center;
    font-style: italic;
    color: var(--text-muted);
    margin-top: 40px;
    font-size: 1.1rem;
}


.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.review-card {
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    background-color: var(--card-bg);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.fb-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.review-text {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #ddd;
}

.review-author {
    font-weight: 600;
}

.review-footer{
    display: block;
    text-align: center;
    margin-top: 20px;
    font-weight: 600;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-muted);
}


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

.service-card{
    position: relative;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    background-color: var(--card-bg);
    transition: transform 0.3s ease;
}

.service-card a{
    text-decoration: none;
    color: white;
}


.service-card a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: white;
}

.service-card h3 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 900;
}

.service-card ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-card ul li {
    margin-bottom: 15px;
    color: #ddd;
}


.contact-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-card {
    background-color: var(--card-bg);
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    width: 250px;
    max-width: 100%;
    text-decoration: none;
    color: white;
    transition: background-color 0.3s;
    
}

.contact-card:hover {
    background-color: #1a1a1a;
    
}

.contact-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-name {
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.contact-handle {
    color: var(--text-muted);
}

.contact-cta {
    text-align: center;
    font-weight: 600;
    font-style: italic;
    font-size: 1.2rem;
}


footer {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 40px 0;
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1rem;
}

.footer-col p, .footer-col a {
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: 10px;
    display: block;
    font-size: 0.9rem;
}


.about-hero-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    margin-bottom: 80px;
}

.about-image-wrapper {
    position: relative;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    width: 330px;
    flex-shrink: 0;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 13px;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 900;
    padding: 10px 20px;
    border-radius: 8px;
    text-transform: uppercase;
    font-size: 1.2rem;
    z-index: 10;
}

.about-text-box {
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 30px;
    background-color: var(--card-bg);
    max-width: 600px;
}

.about-text-box p {
    margin-bottom: 20px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.about-text-box p:last-child {
    margin-bottom: 0;
}

.qual-spec-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 40px;
    margin-bottom: 120px;
}

.qual-col {
    text-align: center;
    width: 270px;
    display: flex;
    flex-direction: column;
}

.qual-col h3 {
    margin-bottom: 20px;
    font-size: clamp(1.5rem, 3vw + 0.5rem, 2rem);
    text-transform: none;
    font-weight: 800;
}

.list-box {
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 25px 20px;
    background-color: var(--card-bg);
    text-align: left;
    flex-grow: 1;
}

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

.list-box ul li {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.list-box ul li:last-child {
    margin-bottom: 0;
}


.faq-box {
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--card-bg);
    margin-bottom: 60px;
}

.faq-item {
    margin-bottom: 30px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-q {
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.faq-a {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.5;
}


@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        text-align: center;
        gap: 60px;
        padding-top: 40px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-desc {
        margin: 0 auto 30px auto;
    }

    .hero-image {
        padding-right: 0;
        margin-right: 15px;
        margin-bottom: 20px;
    }
    
    .about-hero-grid {
        flex-direction: column;
        align-items: center;
    }
    
    .about-image-wrapper {
        margin: 0 auto 30px auto;
        width: 100%;
        max-width: 400px;
    }
    
    .qual-spec-grid {
        flex-direction: column;
        align-items: center;
    }

    .qual-col {
        width: 100%;
        max-width: 400px;
    }
    
    .faq-box {
        padding: 30px 20px;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    header .container {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center !important;
        gap: 30px;
    }
    
    .footer-col {
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .badge {
        left: -10px;
    }
}
