/* ============================================
   HIMALAY GROUP - Construction HTML Template
   Main CSS Styles
   ============================================ */

/* CSS Variables */
:root {
    --primary: #1381ff;
    --primary-dark:rgb(4, 6, 7);
    --background: rgb(30, 32, 37);
    --background-light: #111827;
    --background-lighter: #1a2332;
    --foreground: #ffffff;
    --foreground-muted: #9ca3af;
    --border: #2a3444;
    --card: #151c2a;
    --card-hover: #1e2738;
    --dark: #1a1a1a;
    --dark-2: #2a2a2a;
    --dark-3: #333333;
    --light: #f5f5f5;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #e0e0e0;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --radius: 8px;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--background);
    color: var(--foreground);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: var(--primary);
    color: var(--background);
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--foreground);
    border-color: var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline-light {
    background: transparent;
    color: var(--foreground);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    border-color: var(--foreground);
    background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.btn-dark:hover {
    background: var(--primary);
    color: var(--dark);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 15px;
}

.btn-block {
    width: 100%;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 20px;
    color: var(--foreground);
}

.section-description {
    font-size: 16px;
    color: var(--foreground-muted);
    max-width: 600px;
}

.section-desc {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .section-description {
    margin: 0 auto;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 15, 26, 0.98);
    box-shadow: var(--shadow);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    border-radius: 6px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--foreground);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list li a {
    font-size: 15px;
    font-weight: 500;
    color: var(--foreground-muted);
    position: relative;
    transition: var(--transition);
}

.nav-list li a:hover,
.nav-list li a.active {
    color: var(--primary);
}

.nav-list li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-list li a:hover::after,
.nav-list li a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--foreground);
    transition: var(--transition);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    padding: 180px 0 100px;
    background: var(--dark-2);
    position: relative;
    text-align: center;
    overflow: hidden;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1200&q=80');
    background-size: cover;
    background-position: center;
}

.page-header h1 {
    font-size: clamp(36px, 8vw, 72px);
    margin-bottom: 20px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gray);
}

.breadcrumb a:hover {
    color: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--background) 0%, var(--background-light) 100%);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(19, 129, 255, 0.08) 0%, transparent 70%);
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-subtitle {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 64px);
    margin-bottom: 24px;
    line-height: 1.1;
}

.text-accent {
    color: var(--primary);
}

.hero-description {
    font-size: 18px;
    color: var(--foreground-muted);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.play-icon {
    font-size: 10px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat .stat-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.hero-stat .stat-label {
    font-size: 14px;
    color: var(--foreground-muted);
}

.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
    background: var(--background-light);
}

.about-section {
    padding: 120px 0;
    background: var(--dark);
}

.about-content,
.about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-image-main {
    border-radius: 20px;
    overflow: hidden;
}

.about-image-main img,
.about-main-img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
}

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 250px;
    border-radius: 15px;
    overflow: hidden;
    border: 5px solid var(--background-light);
}

.about-image-secondary img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.experience-badge,
.about-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 100px;
    height: 100px;
    background: var(--primary);
    color: var(--background);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.experience-badge .exp-number {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.experience-badge .exp-text {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.about-badge svg {
    color: var(--dark);
}

.about-description {
    font-size: 16px;
    color: var(--foreground-muted);
    margin-bottom: 30px;
}

.about-features {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.about-feature,
.feature-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding: 20px;
    background: var(--dark-2);
    border-radius: 15px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: rgba(19, 129, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.feature-content h4,
.about-feature h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.feature-content p,
.about-feature p {
    font-size: 14px;
    color: var(--foreground-muted);
}

.about-list {
    margin-bottom: 30px;
}

.about-list li {
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
    color: var(--gray);
}

.about-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Progress Bars */
.progress-bars {
    margin-bottom: 30px;
}

.progress-item {
    margin-bottom: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.progress-bar {
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 4px;
    transition: width 1s ease;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services {
    background: var(--background);
}

.services-section {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--card);
    border-radius: 15px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    position: relative;
    padding: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(19, 129, 255, 0.1);
}

.service-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 14px;
    color: var(--foreground-muted);
    margin-bottom: 16px;
}

.service-image {
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 15px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(19, 129, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: -50px;
    position: relative;
    border: 3px solid var(--card);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.service-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    color: var(--dark);
    transition: var(--transition);
}

.service-link:hover {
    background: var(--white);
    gap: 12px;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats {
    background: var(--primary);
    padding: 60px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
}

.stat-item .stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item .stat-icon svg {
    width: 32px;
    height: 32px;
    color: gold;
}

.stat-content {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
}

.stat-content .stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: white;
    line-height: 1;
}

.stat-content .stat-plus {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: white;
}

.stat-content .stat-label {
    width: 100%;
    font-size: 14px;
    color: white;
    opacity: 0.8;
    margin-top: 5px;
}

/* ============================================
   PROJECTS SECTION
   ============================================ */
.projects {
    background: var(--background-light);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.project-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    transform: translateY(100%);
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-category {
    display: inline-block;
    background: var(--primary);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 10px;
}

.project-overlay h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.project-overlay p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 15px;
}

.project-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
}

/* ============================================
   TEAM SECTION
   ============================================ */
.team {
    background: var(--background-light);
}

.team-section {
    padding: 120px 0;
    background: var(--dark-2);
}

.team-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-card {
    background: var(--card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.team-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-social {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    transition: var(--transition);
}

.team-card:hover .team-social {
    bottom: 0;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
}

.team-social a:hover {
    background: var(--foreground);
}

.team-content {
    padding: 20px;
    text-align: center;
}

.team-content h3,
.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-card h3 a:hover {
    color: var(--primary);
}

.team-content p,
.team-card span {
    font-size: 14px;
    color: var(--primary);
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog {
    background: var(--background-light);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: var(--card);
    border-radius: 15px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.blog-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: var(--background);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--foreground-muted);
}

.blog-content h3 {
    font-size: 20px;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 14px;
    color: var(--foreground-muted);
    margin-bottom: 16px;
}

.read-more {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.read-more:hover {
    gap: 12px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
    background: var(--background);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info p {
    font-size: 16px;
    color: var(--foreground-muted);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(19, 129, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-item h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 14px;
    color: var(--foreground-muted);
    margin-bottom: 0;
}

.contact-form {
    background: var(--card);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--foreground);
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
    background: var(--background);
}

.testimonials-section {
    padding: 120px 0;
    background: var(--dark-2);
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.testimonials-header p {
    color: var(--gray);
    margin-top: 15px;
}

.testimonials-slider,
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-card img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.testimonial-card p {
    color: var(--gray);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-card h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.testimonial-card span {
    color: var(--gray);
    font-size: 14px;
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 80px;
    color: var(--primary);
    opacity: 0.3;
    position: absolute;
    top: -30px;
    left: -10px;
    line-height: 1;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 120px 0;
    background: var(--dark-2);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.faq-content p {
    color: var(--gray);
    margin-bottom: 30px;
}

.faq-contact-card {
    background: var(--dark);
    padding: 30px;
    border-radius: 20px;
    margin-top: 40px;
}

.faq-contact-card svg {
    color: var(--primary);
    margin-bottom: 15px;
}

.faq-contact-card span {
    display: block;
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 10px;
}

.faq-contact-card a {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.faq-contact-card a:hover {
    color: var(--primary);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--dark);
    border-radius: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(19, 129, 255, 0.1);
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
}

.faq-toggle {
    width: 30px;
    height: 30px;
    background: var(--dark-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: var(--primary);
    color: var(--dark);
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.8;
}

/* ============================================
   MARQUEE SECTION
   ============================================ */
.marquee-section {
    padding: 40px 0;
    background: var(--dark-2);
    overflow: hidden;
}

.marquee-section.dark {
    background: var(--dark);
}

.marquee {
    overflow: hidden;
}

.marquee-track,
.marquee-content {
    display: flex;
    gap: 60px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-size: 36px;
    color: var(--gray);
}

.marquee-content .highlight {
    color: var(--primary);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 18px;
    color: white;
    opacity: 0.9;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: var(--background);
    color: white;
    border-color: var(--background);
}

.cta-buttons .btn-primary:hover {
    background: black;
}

.phone-icon {
    font-size: 18px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.pricing {
    background: var(--background-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--card);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--background);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.pricing-header p {
    font-size: 14px;
    color: var(--foreground-muted);
}

.pricing-price {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border);
}

.pricing-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    vertical-align: top;
}

.pricing-price .amount {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--foreground);
}

.pricing-price .period {
    font-size: 14px;
    color: var(--foreground-muted);
}

.pricing-features {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--primary);
    font-weight: 700;
}

.pricing-features .cross {
    color: var(--foreground-muted);
}

.pricing-features li.disabled {
    color: var(--foreground-muted);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process {
    background: var(--background);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-item::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: var(--border);
}

.process-item:last-child::after {
    display: none;
}

.process-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.3;
    margin-bottom: 10px;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid var(--border);
    transition: var(--transition);
}

.process-item:hover .process-icon {
    border-color: var(--primary);
    background: rgba(19, 129, 255, 0.1);
}

.process-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.process-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-item p {
    font-size: 14px;
    color: var(--foreground-muted);
}

/* ============================================
   AWARDS SECTION
   ============================================ */
.awards {
    background: var(--background);
}

.awards-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.awards-text p {
    font-size: 16px;
    color: var(--foreground-muted);
    margin-top: 20px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.award-item {
    background: var(--card);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.award-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.award-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.award-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.award-item p {
    font-size: 14px;
    color: var(--foreground-muted);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 80px 0 30px;
    background: black;
    border-top: 1px solid var(--dark-3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about p {
    color: var(--gray);
    margin: 20px 0;
    font-size: 14px;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--dark-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
}

.footer-social a svg {
    color: var(--white);
}

.footer-social a:hover svg {
    color: var(--dark);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 25px;
}

.footer-links ul li {
    margin-bottom: 12px;
}

.footer-links ul li a {
    color: var(--gray);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-contact ul li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 14px;
}

.footer-contact ul li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--dark-3);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 14px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.back-to-top svg {
    width: 24px;
    height: 24px;
    color: var(--background);
}

/* ============================================
   DETAIL PAGE STYLES
   ============================================ */
.detail-page {
    padding-top: 80px;
}

.detail-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
}

.detail-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
}

.detail-content {
    padding: 80px 0;
}

.detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.detail-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

.detail-sidebar {
    background: var(--card);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
}

.detail-info-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
}

.detail-info-item:last-child {
    border-bottom: none;
}

.detail-info-item span:first-child {
    color: var(--gray);
}

.detail-info-item span:last-child {
    font-weight: 600;
}

.detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-grid img:hover {
    transform: scale(1.02);
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */
@media (max-width: 1200px) {
    .services-grid,
    .team-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .process-item::after {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .about-grid,
    .contact-content,
    .detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .hero-image {
        order: -1;
    }
    
    .pricing-grid,
    .blog-grid,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .awards-content,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-slider,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--background);
        padding: 20px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .header-actions .btn {
        display: none;
    }
}

@media (max-width: 768px) {
    section {
        padding: 70px 0;
    }
    
    .services-grid,
    .team-grid,
    .pricing-grid,
    .blog-grid,
    .stats-grid,
    .process-grid,
    .awards-grid,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-image-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        margin-top: 20px;
    }
    
    .about-image-secondary img {
        height: 200px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 30px;
    }
    
    .cta-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    
    .marquee-content span {
        font-size: 24px;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary);
    z-index: 9999;
    transition: width 0.1s ease;
}
