@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
    --primary-color: #34546B;
    --secondary-color: #FF8C42;
    --cta-color: #FF5A5F;
    --cta-hover: #E04D51;
    --neutral-bg: #F7F7F7;
    --body-text: #333333;
    --subtle-accent: #CCCCCC;
    --white: #FFFFFF;
    --black: #000000;
    
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --header-height: 80px;
    --header-height-scrolled: 70px;
    --container-max: 1200px;
    --transition-smooth: all 0.3s ease-in-out;
    --transition-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--body-text);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    line-height: 1.2;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 500; }

p { margin-bottom: 1rem; }

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

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

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
}

.section-title h2 {
    margin-bottom: 15px;
}

.section-title p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--secondary-color);
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Header Styles */
.header {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition-smooth);
    height: var(--header-height);
}

.header.scrolled {
    height: var(--header-height-scrolled);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--primary-color);
}

.logo img {
    max-width: 150px;
    max-height: 60px;
    transition: var(--transition-smooth);
}

.header.scrolled .logo img {
    max-width: 120px;
    max-height: 50px;
}

.nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--body-text);
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-smooth);
}

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

.header-contact {
    display: flex;
    align-items: center;
    gap: 15px;
}

.phone-number {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--cta-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background: var(--cta-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(255, 90, 95, 0.3);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 8px;
    border: 2px solid var(--primary-color);
    cursor: pointer;
    transition: var(--transition-smooth);
}

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

/* Mobile Header */
.mobile-header {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger {
    width: 24px;
    height: 18px;
    position: relative;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--primary-color);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: var(--transition-smooth);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 8px; }
.hamburger span:nth-child(3) { top: 16px; }

.hamburger.active span:nth-child(1) {
    top: 8px;
    transform: rotate(45deg);
}

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

.hamburger.active span:nth-child(3) {
    top: 8px;
    transform: rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--white);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    z-index: 999;
    transition: right 0.4s ease;
    padding: 80px 30px 30px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav-links a {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 10px 0;
    border-bottom: 1px solid var(--subtle-accent);
}

.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--cta-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    padding: 15px 20px;
    border-radius: 8px;
    margin-top: 20px;
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(52, 84, 107, 0.85) 0%, rgba(52, 84, 107, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: var(--white);
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-content .btn-primary {
    font-size: 1rem;
    padding: 15px 30px;
    opacity: 0;
    transform: translateY(30px);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.hero-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.hero-phone svg {
    width: 24px;
    height: 24px;
}

.hero-stagger .word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
}

/* Urgency Section */
.urgency-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 80px 0;
}

.urgency-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.urgency-left h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.urgency-left p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.urgency-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 15px 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.problem-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.problem-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateX(-30px);
}

.problem-card:nth-child(even) {
    transform: translateX(30px);
}

.problem-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.problem-card svg {
    width: 40px;
    height: 40px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.problem-card h4 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.problem-card p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Services Section */
.services-section {
    background: var(--neutral-bg);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: scale(0.8);
}

.service-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card svg {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.service-card .learn-more {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 80px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%2334546B" stroke-width="0.5" opacity="0.05"/></svg>');
    background-size: 200px;
    z-index: 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.why-choose-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    opacity: 0;
    transform: translateY(30px);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.why-choose-card .icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--neutral-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-card svg {
    width: 40px;
    height: 40px;
    color: var(--secondary-color);
}

.why-choose-card h3 {
    margin-bottom: 15px;
    font-size: 1.25rem;
}

.why-choose-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

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

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

.stat-item .label {
    font-size: 0.9rem;
    color: #666;
}

/* Process Section */
.process-section {
    background: var(--neutral-bg);
    padding: 80px 0;
    position: relative;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--subtle-accent);
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 0 20px;
    opacity: 0;
    transform: translateX(-30px);
}

.process-step:nth-child(even) {
    transform: translateX(30px);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 3px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 1;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.process-step h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.process-step p {
    font-size: 0.9rem;
    color: #666;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    opacity: 0;
    transform: scale(0.8);
}

.gallery-item:nth-child(1) { transform: translateX(-30px); }
.gallery-item:nth-child(2) { transform: translateY(-20px); }
.gallery-item:nth-child(3) { transform: translateX(30px); }
.gallery-item:nth-child(4) { transform: translateY(20px); }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(52, 84, 107, 0.8), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: var(--white);
    font-size: 0.9rem;
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--primary-color);
    padding: 80px 0;
    color: var(--white);
}

.testimonials-section h2 {
    color: var(--white);
}

.testimonials-carousel {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.testimonial-card {
    flex: 0 0 350px;
    background: var(--white);
    color: var(--body-text);
    padding: 30px;
    border-radius: 16px;
    scroll-snap-align: start;
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-quote {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
}

.testimonial-info span {
    font-size: 0.85rem;
    color: #666;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.dot.active {
    background: var(--white);
}

/* FAQ Section */
.faq-section {
    background: var(--neutral-bg);
    padding: 80px 0;
}

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

.faq-item {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: left;
}

.faq-question svg {
    width: 24px;
    height: 24px;
    transition: var(--transition-smooth);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-spring);
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #666;
    line-height: 1.7;
}

/* CTA Banner */
.cta-banner {
    background: var(--primary-color);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="30" fill="none" stroke="%23FF8C42" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 150px;
    animation: gradientMove 20s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-offer {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: var(--secondary-color);
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    padding: 15px 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.cta-content .btn-primary {
    font-size: 1.1rem;
    padding: 18px 40px;
}

/* Footer */
.footer {
    background: #2A4254;
    color: var(--white);
    padding: 60px 0 20px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    opacity: 0.9;
}

.footer-contact svg {
    width: 18px;
    height: 18px;
    color: var(--secondary-color);
}

.footer-trust {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.warranty-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    width: fit-content;
}

.payment-methods {
    display: flex;
    gap: 10px;
}

.payment-methods img {
    height: 30px;
    width: auto;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Services Page Styles */
.page-hero {
    background: var(--primary-color);
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
    position: relative;
}

.page-hero h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.service-nav {
    background: var(--white);
    padding: 30px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 80px;
    z-index: 100;
}

.service-nav-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.service-nav-list a {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--body-text);
    padding: 10px 0;
    position: relative;
}

.service-nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-smooth);
}

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

.service-detail {
    padding: 80px 0;
}

.service-detail:nth-child(even) {
    background: var(--neutral-bg);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-detail-content h2 {
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 25px 0;
}

.service-detail-content li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.service-detail-content li svg {
    width: 20px;
    height: 20px;
    color: var(--secondary-color);
    flex-shrink: 0;
    margin-top: 3px;
}

.service-detail-content li span {
    color: #666;
}

/* About Page */
.about-hero {
    background: var(--primary-color);
    padding: 120px 0 80px;
    color: var(--white);
}

.about-hero h1 {
    color: var(--white);
    font-size: 3rem;
}

.about-story {
    padding: 80px 0;
}

.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-story-image {
    border-radius: 16px;
    overflow: hidden;
}

.about-story-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.about-story-content blockquote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-color);
    border-left: 4px solid var(--secondary-color);
    padding-left: 20px;
    margin: 25px 0;
}

.about-values {
    background: var(--neutral-bg);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.value-card svg {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.value-card p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.about-difference {
    padding: 80px 0;
}

.difference-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.difference-card {
    text-align: center;
    padding: 40px 30px;
}

.difference-card .number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    line-height: 1;
    margin-bottom: 10px;
}

.difference-card h3 {
    margin-bottom: 15px;
}

.difference-card p {
    color: #666;
    font-size: 0.95rem;
}

.about-service-area {
    background: var(--neutral-bg);
    padding: 80px 0;
}

.service-area-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-area-map {
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    background: #ddd;
}

.service-area-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.service-area-list h3 {
    margin-bottom: 20px;
}

.service-area-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.service-area-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
}

.service-area-list li svg {
    width: 18px;
    height: 18px;
    color: var(--secondary-color);
}

.about-trust {
    padding: 80px 0;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 40px;
}

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

.trust-item img {
    height: 60px;
    width: auto;
    margin-bottom: 15px;
    opacity: 0.7;
    transition: var(--transition-smooth);
}

.trust-item:hover img {
    opacity: 1;
}

/* Gallery Page */
.gallery-hero {
    background: var(--primary-color);
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
}

.gallery-hero h1 {
    color: var(--white);
    font-size: 3rem;
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.gallery-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 40px 0;
}

.gallery-full-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-full-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-full-item:hover img {
    transform: scale(1.1);
}

.gallery-full-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 84, 107, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.gallery-full-item:hover .gallery-full-overlay {
    opacity: 1;
}

.gallery-full-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
}

.project-highlights {
    padding: 80px 0;
    background: var(--neutral-bg);
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
}

.project-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.project-images img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

.project-content h3 {
    margin-bottom: 15px;
}

.project-content h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-size: 1rem;
}

.project-content p {
    color: #666;
    margin-bottom: 20px;
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.before-image,
.after-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-image img,
.after-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.after-image {
    clip-path: inset(0 0 0 50%);
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: var(--white);
    cursor: ew-resize;
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Contact Page */
.contact-hero {
    background: var(--primary-color);
    padding: 120px 0 80px;
    color: var(--white);
    text-align: center;
}

.contact-hero h1 {
    color: var(--white);
    font-size: 3rem;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.contact-info-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

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

.contact-info-card svg {
    width: 50px;
    height: 50px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-info-card h3 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-info-card p {
    color: #666;
    margin: 0;
}

.contact-info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-form-section {
    background: var(--neutral-bg);
    padding: 80px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--subtle-accent);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

.contact-map-section {
    padding: 80px 0;
}

.contact-map {
    border-radius: 16px;
    overflow: hidden;
    height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.emergency-banner {
    background: var(--cta-color);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.emergency-banner h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.emergency-banner p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Confetti Animation */
.confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3000;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    opacity: 0;
}

/* Hidden Service Tip */
.service-tip {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    z-index: 100;
}

.service-tip::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid var(--primary-color);
}

.logo:hover .service-tip {
    opacity: 1;
    visibility: visible;
}

/* Responsive Styles */
@media (max-width: 1023px) {
    .header-inner {
        padding: 0 20px;
    }
    
    .nav-links {
        display: none;
    }
    
    .header-contact {
        display: none;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .process-step {
        transform: translateY(30px);
    }
    
    .process-step:nth-child(even) {
        transform: translateY(30px);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .urgency-grid {
        grid-template-columns: 1fr;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
    }
    
    .about-story-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .difference-grid {
        grid-template-columns: 1fr;
    }
    
    .service-area-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .project-card {
        grid-template-columns: 1fr;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    :root {
        --header-height: 68px;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
    
    .hero {
        height: auto;
        min-height: 500px;
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .problem-cards {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        flex-direction: column;
        gap: 30px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        flex: 0 0 300px;
    }
    
    .cta-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-offer {
        font-size: 1.5rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-grid {
        gap: 30px;
    }
    
    .gallery-full-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .service-nav-list {
        gap: 20px;
    }
    
    .before-after-slider {
        height: 300px;
    }
    
    .scroll-progress {
        height: 3px;
    }
}

/* Animations for reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .hero-content h1,
    .hero-content p,
    .hero-content .btn-primary {
        opacity: 1;
        transform: none;
    }
    
    .problem-card,
    .service-card,
    .why-choose-card,
    .process-step,
    .gallery-item {
        opacity: 1;
        transform: none;
    }
}

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

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}