/* Base Styles */
:root {
    --primary-color: #0000FF;
    --primary-dark: #0000CC;
    --primary-light: #4444FF;
    --primary-transparent: rgba(0, 0, 255, 0.1);
    --secondary-color: #0000FF;
    --text-color: #FFFFFF;
    --light-text: #FFFFFF;
    --white: #FFFFFF;
    --light-gray: #0000DD;
    --border-color: #0000CC;
    --max-width: 1200px;
    --box-shadow: 0 5px 15px rgba(0, 0, 255, 0.2);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

.container {
    width: 90%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 15px;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--white);
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--white);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

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

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 4px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
    text-align: center;
}

.btn-primary {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--white);
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

section {
    padding: 80px 0;
}

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 30px 0;
}

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

.logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: 0.5px;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
}

nav ul {
    display: flex;
    gap: 2.5rem;
}

nav li {
    position: relative;
}

nav a {
    font-weight: 500;
    font-size: 1.1rem;
    display: inline-block;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

nav a:hover {
    opacity: 0.8;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    position: absolute;
    right: 15px;
    top: 25px;
    cursor: pointer;
}

.nav-toggle-label span, 
.nav-toggle-label span::before, 
.nav-toggle-label span::after {
    display: block;
    background: var(--white);
    height: 2px;
    width: 2rem;
    position: relative;
    transition: var(--transition);
}

.nav-toggle-label span::before, 
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 7px;
}

.nav-toggle-label span::after {
    top: 7px;
}

/* Hero Section */
.hero {
    padding: 180px 0 140px;
    background: var(--primary-color);
}

.hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: left;
}

.hero h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--white);
    font-weight: 800;
    font-family: 'Roboto Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--white);
    font-weight: 400;
}

/* Statement Sections */
.statement-section {
    background-color: var(--primary-color);
    padding: 120px 0;
}

.big-statement {
    max-width: 1000px;
    margin: 0;
}

.big-statement h2 {
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 800;
    color: var(--white);
    text-align: left;
    padding-bottom: 0;
    margin-bottom: 2rem;
}

.big-statement h2::after {
    display: none;
}

.audience-content {
    max-width: 800px;
    margin: 2rem 0;
}

.audience-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.steps-content {
    max-width: 800px;
    margin: 2rem 0;
}

.step-item {
    margin-bottom: 2rem;
}

.step-item h3 {
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-item p {
    font-size: 1.2rem;
    color: var(--white);
}

.pricing-content {
    max-width: 800px;
    margin: 2rem 0;
}

.pricing-content p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.pricing-note {
    font-style: italic;
    font-size: 1rem !important;
    margin-top: 2rem !important;
    opacity: 0.8;
}

.strikethrough {
    position: relative;
    display: inline-block;
    margin-right: 15px;
    opacity: 0.8;
    color: #ff6b6b;
}

.strikethrough::before {
    content: '';
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    border-bottom: 3px solid #ff6b6b;
    transform: rotate(-8deg);
}

/* Testimonial Content */
.testimonial-content {
    max-width: 800px;
    margin: 2rem 0;
}

.testimonial-quote {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.testimonial-author {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.testimonial-note {
    font-style: italic;
    font-size: 1rem;
    margin-top: 1.5rem;
    opacity: 0.8;
    color: var(--white);
}

/* CTA Content */
.cta-content {
    max-width: 800px;
    margin: 2rem 0;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.guarantee-note {
    font-style: italic;
    font-size: 1rem !important;
    margin-top: 2rem !important;
    opacity: 0.8;
}

/* Work Section */
.work-section {
    background-color: var(--primary-color);
    padding: 100px 0;
}

.work-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 3rem;
    font-weight: 600;
}

.work-section h2::after {
    display: none;
}

.value-content {
    max-width: 800px;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
}

.value-content p {
    margin-bottom: 1.5rem;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0;
}

.work-card {
    background-color: var(--primary-dark);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.work-card:hover {
    transform: translateY(-10px);
}

.work-card h3 {
    color: var(--white);
    font-weight: 600;
    margin: 0 0 1rem 0;
    font-size: 1.5rem;
}

.work-card p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* FAQ Section */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0;
}

.faq-item {
    background-color: var(--primary-dark);
    border-radius: 8px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--white);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Story Section */
.story-section {
    background-color: var(--primary-color);
    padding: 100px 0;
}

.story-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 2rem;
    font-weight: 600;
}

.story-section h2::after {
    display: none;
}

.story-content {
    max-width: 800px;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
}

.story-content p {
    margin-bottom: 1.5rem;
}

/* Project Section Styles */
.work-title-link {
    text-decoration: none;
    color: var(--white);
    display: inline-block;
}

.work-title {
    position: relative;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 3rem;
    height: 2.5rem;
    width: auto;
    min-width: 200px;
}

.work-title .default-title,
.work-title .hover-title {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.work-title .default-title {
    opacity: 1;
    transform: translateY(0);
}

.work-title .hover-title {
    opacity: 0;
    transform: translateY(5px);
}

.work-title .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.work-title:hover .default-title {
    opacity: 0;
    transform: translateY(-5px);
}

.work-title:hover .hover-title {
    opacity: 1;
    transform: translateY(0);
}

.work-title:hover .arrow {
    transform: translateX(10px);
}

.home-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.home-project-card {
    background-color: var(--primary-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.home-project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.home-project-image {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    overflow: hidden;
    background-color: #000;
}

.home-project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.home-project-card:hover .home-project-image img {
    transform: scale(1.05);
}

.home-project-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.home-project-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.home-project-title {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
}

.home-project-year {
    font-size: 0.9rem;
    color: var(--white);
    opacity: 0.7;
    margin: 0;
}

.home-project-description {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
}

.home-project-link {
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    align-self: flex-start;
}

.arrow-right {
    transition: transform 0.3s ease;
}

.home-project-card:hover .arrow-right {
    transform: translateX(5px);
}

.view-all-projects {
    margin-top: 3rem;
    text-align: center;
}

.btn-view-all {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-dark);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn-view-all:hover {
    opacity: 0.8;
    transform: translateY(-3px);
}

/* Projects Grid (for all projects page) */
.all-projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.project-card {
    background-color: var(--primary-dark);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    color: var(--white);
    text-decoration: none;
}

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

.project-image {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    overflow: hidden;
}

.project-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-info {
    padding: 1.5rem;
}

.project-info h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.3rem;
    font-weight: 600;
}

.project-info p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background-color: var(--primary-color);
    padding: 100px 0;
}

.contact-section h2 {
    color: var(--white);
    font-size: 2.5rem;
    text-align: left;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-section h2::after {
    display: none;
}

.contact-info {
    max-width: 600px;
    color: var(--white);
    font-size: 1.2rem;
    line-height: 1.8;
    margin: 0;
}

.contact-info a {
    color: var(--white);
    font-weight: bold;
    text-decoration: underline;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 2rem 0;
    text-align: left;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

footer a {
    color: var(--white);
    text-decoration: underline;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 1;
    color: var(--white);
}

/* Responsive Design */
@media screen and (max-width: 992px) {
    .hero h1 {
        font-size: 4rem;
    }
    
    .big-statement h2 {
        font-size: 3.5rem;
    }

    .work-grid, .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero {
        padding: 140px 0 80px;
    }
}

@media screen and (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--primary-dark);
        transform: scale(1, 0);
        transform-origin: top;
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.2s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav ul {
        flex-direction: column;
        padding: 1rem 0;
    }
    
    nav li {
        text-align: center;
    }
    
    nav a {
        padding: 0.8rem 0;
        display: block;
        color: var(--white);
    }
    
    .nav-toggle:checked ~ nav {
        transform: scale(1, 1);
        opacity: 1;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .big-statement h2 {
        font-size: 2.8rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .statement-section {
        padding: 80px 0;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero p {
        font-size: 1.3rem;
    }
    
    .home-projects-grid {
        grid-template-columns: 1fr;
    }
    
    .home-project-title {
        font-size: 1.3rem;
    }
}

@media screen and (max-width: 576px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .big-statement h2 {
        font-size: 2.2rem;
    }
    
    .work-section h2,
    .story-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .work-grid, .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero {
        padding: 100px 0 40px;
    }
    
    .statement-section {
        padding: 60px 0;
    }
    
    .home-project-content {
        padding: 1.2rem;
    }
    
    .home-project-title {
        font-size: 1.2rem;
    }
    
    .home-project-description {
        font-size: 0.9rem;
    }
    
    .btn-view-all {
        padding: 0.7rem 1.3rem;
        font-size: 0.9rem;
    }
}
