/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: hsl(215, 25%, 15%);
    background-color: hsl(0, 0%, 100%);
}
.logo img{
    border-radius: 50% !important;
}

/* CSS Variables - Construction Theme */
:root {
    /* Core construction palette */
    --background: hsl(0, 0%, 100%);
    --foreground: hsl(215, 25%, 15%);
    --card: hsl(0, 0%, 100%);
    --card-foreground: hsl(215, 25%, 15%);
    --primary: hsl(215, 40%, 25%);
    --primary-foreground: hsl(0, 0%, 100%);
    --primary-hover: hsl(215, 45%, 30%);
    --secondary: hsl(25, 85%, 60%);
    --secondary-foreground: hsl(0, 0%, 100%);
    --secondary-hover: hsl(25, 90%, 55%);
    --muted: hsl(220, 10%, 96%);
    --muted-foreground: hsl(215, 15%, 50%);
    --accent: hsl(210, 30%, 85%);
    --accent-foreground: hsl(215, 40%, 25%);
    --border: hsl(220, 15%, 88%);
    --input: hsl(220, 15%, 92%);
    --ring: hsl(215, 40%, 25%);

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, hsl(215, 40%, 25%, 0.9), hsl(215, 35%, 35%, 0.8));
    --gradient-primary: linear-gradient(135deg, hsl(215, 40%, 25%), hsl(215, 45%, 30%));
    --gradient-secondary: linear-gradient(135deg, hsl(25, 85%, 60%), hsl(25, 90%, 55%));
    --gradient-surface: linear-gradient(180deg, hsl(0, 0%, 100%), hsl(220, 10%, 98%));

    /* Shadows */
    --shadow-construction: 0 10px 30px -10px hsl(215, 40%, 25%, 0.3);
    --shadow-elevated: 0 20px 40px -15px hsl(215, 40%, 25%, 0.4);
    --shadow-glow: 0 0 40px hsl(25, 85%, 60%, 0.3);

    /* Animations */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

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

/* Navigation */
.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: #fff ;
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid #000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: rgb(18, 11, 56);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    width: 2rem;
    height: 2rem;
    color: var(--secondary);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 0.5rem 0;
    outline: none !important;
}

.nav-link:hover {
    color: var(--secondary);
}

.nav-link.active {
    color: var(--secondary);
    border-bottom: 2px solid var(--secondary);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.25rem;
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.nav-mobile {
    display: none;
    padding: 1rem 0;
    flex-direction: column;
    gap: 1rem;
    /* background: var(--gradient-hero); */
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-mobile.show {
    display: flex;
}

.nav-mobile-link {
    color: rgba(0, 0, 0, 0.9);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-smooth);
}

.nav-mobile-link:hover {
    color: var(--secondary);
}

/* Page Management */
.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.play-button {
    position: absolute;
    top: 5rem;
    right: 2rem;
    z-index: 10;
}

.btn-play {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(8px);
}

.btn-play:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-play i {
    margin-left: 0.25rem;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 0 1rem;
    max-width: 1200px;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title-gradient {
    display: block;
    background: linear-gradient(135deg, var(--secondary), hsl(25, 100%, 65%));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat {
    animation: slideUp 0.8s ease-out;
}

.stat-number {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-box {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 1.25rem;
    display: flex;
    justify-content: center;
}

.scroll-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 0.125rem;
    margin-top: 0.5rem;
    animation: pulse 2s infinite;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
}
.btn-nav{
    padding: 10px;
    font-size: 1.25rem;
    background-color: hsl(25, 85%, 60%) !important;
}

.btn-hero {
    background: rgba(255, 255, 255, 0.131);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(8px);
}

.btn-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-cta {
    background: var(--gradient-secondary);
    color: var(--secondary-foreground);
    border: none;
}

.btn-cta:hover {
    background: var(--secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-cta {
    width: 100%;
    background-color: var(--secondary);
}
.mobile-cta:hover{
    background-color: #1c1c1c;
}

/* Sections */
.services-preview {
    padding: 5rem 0;
    background: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

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

.service-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-construction);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: hsl(215, 40%, 25%, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.service-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: var(--gradient-surface);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    background: hsl(215, 40%, 25%, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    flex-shrink: 0;
}

.contact-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-method h4 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-method p {
    color: var(--muted-foreground);
    margin: 0;
}

.contact-method small {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.form-card {
    background: var(--card);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-construction);
    border: 1px solid var(--border);
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

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

.form-group label {
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem;
    border: 1px solid var(--input);
    border-radius: 0.5rem;
    background: var(--background);
    color: var(--foreground);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ring);
    box-shadow: 0 0 0 3px hsl(215, 40%, 25%, 0.1);
}

.form-submit {
    margin-top: 1rem;
}

/* Page Layouts */
.page-hero {
    padding: 6rem 0 4rem;
    background: var(--gradient-surface);
}

.page-title {
    font-size: clamp(2.5rem, 6vw, 3rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}

.page-description {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    line-height: 1.6;
}

.content-section {
    padding: 5rem 0;
}

/* Services Page */
.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.service-detailed-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: var(--transition-smooth);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.service-detailed-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-construction);
}

.service-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.service-detailed-card p {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--foreground);
}

.service-features i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--secondary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Portfolio Page */
.filter-section {
    padding: 2rem 0;
    border-bottom: 1px solid var(--border);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border);
    border-radius: 0.5rem;
    background: var(--background);
    color: var(--foreground);
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.875rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--primary-foreground);
    /* border-color: var(--primary); */
    /* box-shadow: var(--shadow-construction); */
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.portfolio-card.hidden {
    display: none;
}

.portfolio-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-construction);
}

.portfolio-image {
    position: relative;
}

.portfolio-image img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.portfolio-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.portfolio-content {
    padding: 1.5rem;
}

.portfolio-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.portfolio-content p {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.portfolio-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.detail i {
    width: 1rem;
    height: 1rem;
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
}

.stats-section .section-header h2 {
    color: white;
}

.stats-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.about-story h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-content p {
    color: var(--muted-foreground);
    font-size: 1.125rem;
    line-height: 1.6;
}

.highlights-card {
    background: var(--gradient-primary);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
}

.highlights-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.highlights-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.highlight i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.values-section {
    padding: 5rem 0;
    background: var(--gradient-surface);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-construction);
}

.value-icon {
    width: 4rem;
    height: 4rem;
    background: hsl(215, 40%, 25%, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.value-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.value-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.team-section {
    padding: 5rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-construction);
}

.team-avatar {
    width: 5rem;
    height: 5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.team-avatar i {
    width: 2.5rem;
    height: 2.5rem;
    color: white;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--foreground);
}

.team-title {
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.team-experience,
.team-specialty {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.timeline-section {
    padding: 5rem 0;
    background: var(--gradient-surface);
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 4rem;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.timeline-year {
    background: var(--primary);
    color: var(--primary-foreground);
    border-radius: 50%;
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--muted-foreground);
}

/* Contact Page */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.contact-method-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.contact-method-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-construction);
}

.contact-method-icon {
    width: 4rem;
    height: 4rem;
    background: hsl(215, 40%, 25%, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-method-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.contact-method-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--foreground);
}

.contact-method-card p {
    color: var(--muted-foreground);
    margin-bottom: 0.5rem;
}

.contact-method-card strong {
    color: var(--foreground);
    font-weight: 500;
    display: block;
}

.contact-method-card small {
    color: var(--muted-foreground);
    font-size: 0.875rem;
}

.office-info-section {
    padding: 5rem 0;
    background: var(--gradient-surface);
}

.office-info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.office-card {
    background: var(--card);
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: var(--shadow-construction);
    border: 1px solid var(--border);
}

.office-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.office-header i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.office-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--foreground);
}

.office-hours {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hour-row span:first-child {
    font-weight: 500;
    color: var(--foreground);
}

.hour-row span:last-child {
    color: var(--muted-foreground);
}

.emergency-info,
.appointment-info {
    background: hsl(215, 40%, 25%, 0.05);
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.emergency-info strong,
.appointment-info strong {
    color: var(--foreground);
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.location-info h4 {
    font-weight: 500;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.location-info p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.faq-section {
    padding: 5rem 0;
}

.section-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary);
    margin: 0 auto 1rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 4rem;
    margin: 0 auto;
}

.faq-item {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-item:hover {
    box-shadow: var(--shadow-construction);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* CTA Sections */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-section-light {
    padding: 5rem 0;
    background: var(--gradient-surface);
    text-align: center;
}

.cta-section-light h2 {
    font-size: clamp(1.875rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.cta-section-light p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: 2rem;
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
}

/* Success Toast */
.success-toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: var(--shadow-elevated);
    z-index: 1000;
    opacity: 0;
    transform: translateX(100%);
    transition: var(--transition-smooth);
}

.success-toast.show {
    opacity: 1;
    transform: translateX(0);
}

.success-content {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.success-content i {
    width: 1.5rem;
    height: 1.5rem;
    color: #22c55e;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.success-content strong {
    color: var(--foreground);
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
}

.success-content p {
    color: var(--muted-foreground);
    font-size: 0.875rem;
    margin: 0;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}


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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40%,
    43% {
        transform: translateX(-50%) translateY(-30px);
    }

    70% {
        transform: translateX(-50%) translateY(-15px);
    }

    90% {
        transform: translateX(-50%) translateY(-4px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* Responsive Design */
@media (min-width: 640px) {

    .hero-buttons,
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .office-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .timeline {
        max-width: 64rem;
    }

    .faq-list {
        max-width: 64rem;
    }

    .faq-section {
        padding: 0.1rem 0;
    }
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }

    .mobile-menu-btn {
        display: none;
    }

    .nav-mobile {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .faq-section {
    display: none;
}
    .mobile-menu-btn {
        display: block;
    }

    .nav-desktop {
        display: none;
    }

    .play-button {
        display: none;
    }

    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        justify-content: flex-start;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 0.5rem;
    }

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

    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .timeline-year {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .service-detailed-card {
        padding: 1.5rem;
    }

    .form-card {
        padding: 1.5rem;
    }

    .office-card {
        padding: 1.5rem;
    }

    .success-toast {
        right: 1rem;
        left: 1rem;
        top: 1rem;
    }

    .faq-section {
        width: 100% !important;
        padding: 1rem 0 !important;
    }
}
/* Footer styles */
.footer {
    background-color: #000;
    color: white;
    padding: 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Logo styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #60a5fa;
}

.logo-text {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 600;
}

/* Navigation styles */
.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    padding: 0.25rem 0;
}

.footer-link:hover {
    color: white;
}

/* Footer bottom */
.footer-bottom {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #374151;
    text-align: center;
}

.copyright {
    color: #9ca3af;
    font-size: 0.875rem;
}

/* Responsive design */
@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        gap: 0;
    }
    
    .footer-nav {
        justify-content: flex-end;
    }
}

@media (max-width: 480px) {
    .footer-nav {
        gap: 1rem;
    }
    
    .content-wrapper h1 {
        font-size: 2rem;
    }
    
    .content-wrapper p {
        font-size: 1rem;
    }
}