/* CSS Variables */
:root {
    /* Colors - Complementary Scheme */
    --primary-color: #FF6B35;
    --secondary-color: #4ECDC4;
    --accent-color: #FFE66D;
    --complementary-color: #6B35FF;
    --dark-primary: #CC5529;
    --dark-secondary: #3BA39D;
    --dark-accent: #CCB857;
    --dark-complementary: #5629CC;
    
    /* Neutral Colors */
    --white: #fff;
    --light-gray: #F8F9FA;
    --medium-gray: #6C757D;
    --dark-gray: #343A40;
    --black: #000000;
    
    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Merriweather', serif;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-xxl: 4rem;
    
    /* Breakpoints */
    --bp-mobile: 768px;
    --bp-tablet: 1024px;
    --bp-desktop: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-light: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-medium: 0 4px 8px rgba(0,0,0,0.15);
    --shadow-heavy: 0 8px 16px rgba(0,0,0,0.2);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-sm);
    color: var(--dark-gray);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.4rem, 3vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

p {
    margin-bottom: var(--space-md);
    font-size: clamp(1rem, 2vw, 1.1rem);
    color: var(--medium-gray);
}

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

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

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    box-shadow: var(--shadow-light);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition-medium);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--dark-primary) 0%, var(--dark-secondary) 100%);
    color: var(--white);
    text-decoration: none;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

/* Cards */
.card {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-light);
    padding: var(--space-lg);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.card-image {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-content h3 {
    color: var(--dark-gray);
    margin-bottom: var(--space-sm);
}

.card-content p {
    color: var(--medium-gray);
    margin-bottom: var(--space-md);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(174, 174, 174, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--space-sm) 0;
    box-shadow: var(--shadow-light);
    transition: var(--transition-medium);
}

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

.nav-brand h1 {
    font-size: 1rem;
    color: var(--primary-color);
    margin: 0;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.nav-menu a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 1;
}

.hero-title {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: var(--space-md);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-subtitle {
    color: #fff;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    margin-bottom: var(--space-xl);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* Section Styles */
section {
    padding: var(--space-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.section-header h2 {
    color: var(--dark-gray);
    margin-bottom: var(--space-sm);
}

.section-header p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1;
}

/* Services Section */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-card {
    background: var(--light-gray);
    border-left: 4px solid var(--primary-color);
}

.service-card:hover {
    border-left-color: var(--secondary-color);
}

/* Process Section */
.process-section {
    background: var(--light-gray);
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-xxl);
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: var(--space-xl);
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: var(--space-xl);
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--white);
    position: relative;
    z-index: 2;
}

.timeline-content {
    flex: 1;
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

/* History Section */
.history-section {
    position: relative;
    color: var(--white);
}

.history-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
}

.history-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.history-text p {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: var(--space-md);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.history-stats {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.stat-item {
    text-align: center;
    background: rgba(255,255,255,0.1);
    padding: var(--space-md);
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1rem;
    color: var(--white);
}

/* Projects Section */
.projects-section {
    background: var(--white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.project-card {
    background: var(--light-gray);
    transition: var(--transition-medium);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-heavy);
}

/* Behind the Scenes Section */
.behind-scenes-section {
    background: var(--light-gray);
}

.behind-scenes-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-xxl);
}

.behind-scenes-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.behind-scenes-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.behind-scenes-item:nth-child(even) .image-container {
    order: 2;
}

.behind-scenes-item:nth-child(even) .content {
    order: 1;
}

.image-container {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.behind-scenes-item:hover .image-container img {
    transform: scale(1.05);
}

/* FAQ Section */
.faq-section {
    background: var(--white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--light-gray);
    margin-bottom: var(--space-md);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.faq-question {
    padding: var(--space-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-medium);
}

.faq-question:hover {
    background: var(--primary-color);
    color: var(--white);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: var(--transition-medium);
}

.faq-answer {
    padding: 0 var(--space-lg);
    max-height: 0;
    overflow: hidden;
    transition: var(--transition-medium);
}

.faq-answer.active {
    max-height: 200px;
    padding: var(--space-lg);
}

/* Reviews Section */
.reviews-section {
    background: var(--light-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.review-card {
    background: var(--white);
    position: relative;
}

.review-stars {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.review-author {
    margin-top: var(--space-md);
    border-top: 1px solid var(--light-gray);
    padding-top: var(--space-md);
}

.review-author strong {
    color: var(--dark-gray);
}

.review-author span {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Jobs Section */
.jobs-section {
    background: var(--white);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.job-card {
    background: var(--light-gray);
    border-left: 4px solid var(--secondary-color);
    text-align: left;
}

.job-location {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.job-requirements {
    margin-top: var(--space-md);
}

.job-requirements ul {
    list-style: none;
    padding-left: 0;
}

.job-requirements li {
    position: relative;
    padding-left: var(--space-md);
    margin-bottom: var(--space-xs);
}

.job-requirements li::before {
    content: '•';
    color: var(--secondary-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Resources Section */
.resources-section {
    background: var(--light-gray);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.resource-item {
    background: var(--white);
    padding: var(--space-lg);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.resource-item h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.resource-item ul {
    list-style: none;
}

.resource-item li {
    margin-bottom: var(--space-sm);
}

.resource-item a {
    color: var(--dark-gray);
    transition: var(--transition-fast);
}

.resource-item a:hover {
    color: var(--primary-color);
}

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

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xxl);
    margin-top: var(--space-xl);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.office-info {
    background: var(--light-gray);
    padding: var(--space-lg);
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.office-info h3 {
    color: var(--primary-color);
    margin-bottom: var(--space-md);
}

.office-info p {
    margin-bottom: var(--space-sm);
}

.contact-form-container {
    background: var(--light-gray);
    padding: var(--space-xl);
    border-radius: 15px;
    box-shadow: var(--shadow-medium);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-md);
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-body);
    background: var(--white);
    transition: var(--transition-medium);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: var(--space-xxl) 0 var(--space-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.footer-section h3 {
    color: var(--white);
    margin-bottom: var(--space-md);
}

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

.footer-section li {
    margin-bottom: var(--space-xs);
}

.footer-section a {
    color: var(--light-gray);
    transition: var(--transition-fast);
}

.footer-section a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-links a {
    padding: var(--space-sm);
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    transition: var(--transition-medium);
}

.social-links a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--medium-gray);
}

/* Parallax */
.parallax-container {
    position: relative;
    overflow: hidden;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--space-xs); }
.mb-2 { margin-bottom: var(--space-sm); }
.mb-3 { margin-bottom: var(--space-md); }
.mb-4 { margin-bottom: var(--space-lg); }
.mb-5 { margin-bottom: var(--space-xl); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--space-xs); }
.mt-2 { margin-top: var(--space-sm); }
.mt-3 { margin-top: var(--space-md); }
.mt-4 { margin-top: var(--space-lg); }
.mt-5 { margin-top: var(--space-xl); }

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
}

.success-content {
    text-align: center;
    max-width: 600px;
    padding: var(--space-xl);
}

.success-content h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: var(--space-lg);
}

.success-content p {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: var(--space-xl);
}

/* Privacy and Terms Pages */
.privacy-page,
.terms-page {
    padding-top: 100px;
    background: var(--white);
}

.privacy-content,
.terms-content {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-xxl) var(--space-md);
}

.privacy-content h1,
.terms-content h1 {
    color: var(--primary-color);
    margin-bottom: var(--space-xl);
}

.privacy-content h2,
.terms-content h2 {
    color: var(--dark-gray);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
}

.privacy-content p,
.terms-content p {
    margin-bottom: var(--space-md);
    color: var(--medium-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition-medium);
        box-shadow: var(--shadow-medium);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: var(--space-lg);
        text-align: center;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .timeline-item {
        flex-direction: column !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: var(--space-md) 0 0 0;
        text-align: center;
    }

    .process-timeline::before {
        display: none;
    }

    .history-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .behind-scenes-item {
        grid-template-columns: 1fr !important;
        gap: var(--space-lg);
    }

    .behind-scenes-item:nth-child(even) .image-container,
    .behind-scenes-item:nth-child(even) .content {
        order: unset;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .services-grid,
    .projects-grid,
    .reviews-grid,
    .jobs-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-sm);
    }

    .card {
        padding: var(--space-md);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .btn {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.9rem;
    }
}

/* Animation Classes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Morphing Effects */
.morph-effect {
    transition: var(--transition-slow);
}

.morph-effect:hover {
    border-radius: 50px;
    transform: scale(1.05);
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --light-gray: #1a1a1a;
        --white: #2d2d2d;
        --dark-gray: #ffffff;
        --medium-gray: #cccccc;
    }
}