/* Core Styles & Typography */
:root {
    --primary-bg: #000000;
    --secondary-bg: #111111;
    --primary-text: #E0E0E0;
    --accent-orange: #FF4500; /* A richer orange for elegance */
    --accent-glow: #ff450060;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--primary-bg);
    color: var(--primary-text);
    line-height: 1.6;
    overflow-x: hidden;
}

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

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--primary-text);
}

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--accent-orange);
    text-shadow: 0 0 10px var(--accent-glow);
}

.tagline {
    font-size: 1.5rem;
    font-style: italic;
    color: #cccccc;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary {
    background-color: var(--accent-orange);
    color: var(--primary-bg);
    border: 2px solid var(--accent-orange);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--accent-glow);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo {
    height: 50px;
    width: 50px;
    margin-right: 10px;
}

.site-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-text);
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-text);
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

.nav-links a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--primary-text);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 80px;
        left: 0;
        background-color: rgba(0, 0, 0, 0.9);
        padding: 20px 0;
        text-align: center;
        transition: transform 0.5s ease;
        transform: translateY(-100%);
    }

    .nav-links.active {
        display: flex;
        transform: translateY(0);
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }
}

/* Sections */
section {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    text-align: center;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.hero-logo {
    width: 150px;
    margin-bottom: 25px;
    animation: fadeIn 1s ease-out forwards;
}

/* About Section */
.about-section {
    background-color: var(--secondary-bg);
}

.about-content {
    background: linear-gradient(to right, #000, #1a1a1a);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Services Section */
.services-section {
    background-color: var(--primary-bg);
    text-align: center;
}

.services-grid {
    display: grid;
    /* Updated for 4x2 linear layout on larger screens */
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-color: var(--secondary-bg);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, var(--accent-orange));
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px var(--accent-glow);
}

.service-card:hover::before {
    opacity: 0.2;
}

.service-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
    transition: filter 0.3s ease;
}

.service-card:hover img {
    filter: brightness(0.7);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: var(--accent-orange);
    margin-bottom: 10px;
    font-weight: 500;
}

.card-content p {
    color: #b0b0b0;
    font-size: 0.95rem;
}

/* Transformation Section */
.transformation-section {
    background: linear-gradient(to top, var(--primary-bg), var(--secondary-bg));
}

.transformation-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: #0d0d0d;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

.transformation-image {
    flex: 1;
    min-width: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.transformation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.transformation-text {
    flex: 2;
}

.transformation-text h2 {
    text-align: left;
    margin-bottom: 1rem;
}

.transformation-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.transformation-text blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--accent-orange);
    border-left: 3px solid var(--accent-orange);
    padding-left: 20px;
    margin-bottom: 30px;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-bg);
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}

.contact-form {
    flex: 1;
    max-width: 600px;
    background-color: var(--secondary-bg);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #222;
    border: 1px solid #333;
    border-radius: 8px;
    color: var(--primary-text);
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 8px var(--accent-glow);
}

.contact-info {
    flex: 1;
    max-width: 400px;
    padding-top: 20px;
}

.contact-info h3 {
    color: var(--accent-orange);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 15px;
}

.social-links a {
    color: var(--primary-text);
    text-decoration: none;
    margin-right: 20px;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--accent-orange);
}

/* Footer */
.footer {
    background-color: var(--secondary-bg);
    text-align: center;
    padding: 25px 0;
    color: #888;
}

/* Responsive Design */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .transformation-content {
        flex-direction: column;
        text-align: center;
    }
    .transformation-image {
        min-width: auto;
    }
    .transformation-text h2 {
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .services-grid {
        grid-template-columns: 1fr;
    }
    .contact-content {
        flex-direction: column;
        align-items: center;
    }
    .contact-form, .contact-info {
        max-width: 100%;
        text-align: center;
    }
    .contact-info {
        padding-top: 0;
        margin-top: 30px;
    }
}