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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8fafc;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
.navbar {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo .logo-placeholder {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #1e3a8a, #3b82f6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

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

.nav-link {
    text-decoration: none;
    color: #4b5563;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #1e3a8a;
    background-color: #eff6ff;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #1e3a8a;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-phone:hover {
    color: #1e40af;
}

.booking-btn {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.booking-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #4b5563;
    margin: 3px 0;
    transition: 0.3s;
}

/* Image Slider Styles */
.slider-container {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

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

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 10;
    max-width: 800px;
    padding: 0 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.25rem;
    font-weight: 300;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 20;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.7);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 20;
}

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

.dot.active {
    background: white;
}

/* Main Content Styles */
.main-content {
    padding: 4rem 0;
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #6b7280;
}

/* Services Section */
.services-preview {
    background: #f8fafc;
    padding: 4rem 0;
    margin: 4rem 0;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-card li {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

/* Testimonials */
.testimonials {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: #4b5563;
    font-style: italic;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    color: #1f2937;
    font-weight: 600;
    font-style: normal;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 12px;
    margin: 4rem 0;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

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

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

.btn-primary {
    background: white;
    color: #1e3a8a;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: white;
    color: #1e3a8a;
}

/* Footer Styles */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo .logo-placeholder.small {
    width: 80px;
    height: 80px;
    font-size: 10px;
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: white;
}

.footer-booking-btn {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.footer-booking-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.qr-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qr-code {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    border: 2px solid #374151;
}

.qr-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1rem;
    text-align: center;
    color: #9ca3af;
}

/* About Page Specific Styles */
.our-story {
    padding: 4rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.story-image {
    position: relative;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.experience-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(59, 130, 246, 0.3);
}

.badge-number {
    font-size: 2rem;
    font-weight: 700;
}

.badge-text {
    font-size: 0.875rem;
    line-height: 1.2;
}

.our-values {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.why-choose-detailed {
    padding: 4rem 0;
}

.choose-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.choose-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.choose-text p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1rem;
}

.benefit-icon {
    background: #dcfce7;
    color: #16a34a;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #6b7280;
}

.choose-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-card,
.guarantee-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.process-card h3,
.guarantee-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.process-card ol {
    padding-left: 1rem;
}

.process-card li {
    color: #6b7280;
    margin-bottom: 0.5rem;
}

.guarantee-card {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
}

.guarantee-card p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.guarantee-card ul {
    list-style: none;
}

.guarantee-card li {
    margin-bottom: 0.5rem;
}

.meet-team {
    background: #f8fafc;
    padding: 4rem 0;
}

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.team-member img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
}

.team-member h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.role {
    color: #3b82f6;
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p:last-child {
    color: #6b7280;
}

/* Services Page Specific Styles */
.services-intro {
    padding: 2rem 0;
}

.main-services {
    padding: 4rem 0;
}

.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.service-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-showcase.reverse {
    direction: rtl;
}

.service-showcase.reverse > * {
    direction: ltr;
}

.service-image {
    position: relative;
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-badge.emergency {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.feature {
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-includes {
    background: #eff6ff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-includes.emergency-includes {
    background: #fef2f2;
}

.service-includes h4 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-includes.emergency-includes h4 {
    color: #991b1b;
}

.service-includes ul {
    list-style: none;
    color: #4b5563;
}

.service-includes li {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.service-btn {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.service-btn.emergency-btn {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.service-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
}

.service-btn.emergency-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
}

.additional-services {
    background: #f8fafc;
    padding: 4rem 0;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card-btn {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.service-card-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.process-section {
    padding: 4rem 0;
}

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

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

.step-number {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.materials-section {
    background: #f8fafc;
    padding: 4rem 0;
}

.materials-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.materials-text h2,
.why-choose-services h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.materials-text p,
.why-choose-services p {
    color: #6b7280;
    margin-bottom: 2rem;
}

.materials-list,
.choose-reasons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.material-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.material-item h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.material-item p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

.reason-item {
    display: flex;
    gap: 1rem;
}

.reason-icon {
    background: #dcfce7;
    color: #16a34a;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.reason-content h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.reason-content p {
    color: #6b7280;
    font-size: 0.875rem;
    margin: 0;
}

/* Contact Page Specific Styles */
.contact-methods {
    padding: 2rem 0 4rem;
}

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

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.contact-method h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.method-link {
    color: #3b82f6;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.method-link:hover {
    color: #1e40af;
}

.method-note {
    font-size: 0.875rem;
    color: #9ca3af;
    margin-top: 0.5rem;
}

.hours-list p {
    margin: 0.25rem 0;
    color: #4b5563;
}

.contact-form-section {
    padding: 4rem 0;
}

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

.form-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.form-info p {
    color: #6b7280;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.expectations {
    background: #eff6ff;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.expectations h3 {
    color: #1e3a8a;
    font-weight: 600;
    margin-bottom: 1rem;
}

.expectation-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.expectation-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #4b5563;
}

.expectation-icon {
    background: #dcfce7;
    color: #16a34a;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    flex-shrink: 0;
}

.emergency-notice {
    background: #fef2f2;
    padding: 2rem;
    border-radius: 12px;
}

.emergency-notice h3 {
    color: #991b1b;
    font-weight: 600;
    margin-bottom: 1rem;
}

.emergency-notice p {
    color: #7f1d1d;
    margin-bottom: 1.5rem;
}

.emergency-btn {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: linear-gradient(135deg, #b91c1c, #7f1d1d);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

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

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-status {
    margin-bottom: 1rem;
    padding: 1rem;
    border-radius: 8px;
    display: none;
}

.form-status.success {
    background: #dcfce7;
    color: #16a34a;
    border: 1px solid #bbf7d0;
    display: block;
}

.form-status.error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
    display: block;
}

.submit-btn {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
    transform: translateY(-2px);
}

.form-disclaimer {
    font-size: 0.875rem;
    color: #6b7280;
    text-align: center;
    line-height: 1.5;
}

.service-area {
    background: #f8fafc;
    padding: 4rem 0;
}

.area-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.area-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.area-item p {
    color: #6b7280;
}

/* Past Work Page Specific Styles */
.stats-section {
    padding: 2rem 0 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: #6b7280;
    font-weight: 500;
}

.project-gallery {
    padding: 4rem 0;
}

.projects-showcase {
    display: flex;
    flex-direction: column;
    gap: 6rem;
    margin-top: 3rem;
}

.project-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.project-showcase.reverse {
    direction: rtl;
}

.project-showcase.reverse > * {
    direction: ltr;
}

.project-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.main-image {
    position: relative;
}

.main-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.before-image {
    position: relative;
}

.before-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.8;
}

.image-badge {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.image-badge.after {
    background: #16a34a;
    color: white;
}

.image-badge.before {
    background: #6b7280;
    color: white;
}

.project-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.project-type {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.project-type.emergency {
    background: linear-gradient(135deg, #dc2626, #991b1b);
}

.project-date {
    color: #6b7280;
    font-size: 0.875rem;
}

.project-details h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1f2937;
}

.project-location {
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.project-description {
    color: #4b5563;
    font-size: 1.125rem;
    line-height: 1.6;
}

.project-highlights h4 {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.project-highlights ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.5rem;
}

.project-highlights li {
    color: #4b5563;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.testimonials-detailed {
    background: #f8fafc;
    padding: 4rem 0;
}

.testimonial-card.detailed {
    padding: 2.5rem;
}

.testimonial-card.detailed p {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.testimonial-footer cite {
    font-size: 1.125rem;
}

.testimonial-footer .project-type {
    font-size: 0.875rem;
    align-self: flex-start;
}

.testimonial-date {
    color: #6b7280;
    font-size: 0.875rem;
}

.process-showcase {
    padding: 4rem 0;
}

.quality-guarantee {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    padding: 4rem 2rem;
    border-radius: 12px;
    margin: 4rem 0;
}

.guarantee-content .section-header h2,
.guarantee-content .section-header p {
    color: white;
}

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

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

.guarantee-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 1rem;
}

.guarantee-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.guarantee-item p {
    opacity: 0.9;
}

/* Blog Page Specific Styles */
.blog-intro {
    padding: 2rem 0;
}

.featured-post {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 4rem 0;
    margin: 2rem 0;
    border-radius: 12px;
}

.featured-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.post-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.featured-badge {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.category-badge {
    background: #dbeafe;
    color: #1e40af;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.featured-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.featured-text p {
    color: #4b5563;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.meta-item {
    color: #6b7280;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.read-more-btn {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.read-more-btn:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.featured-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.category-filter {
    padding: 2rem 0;
}

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

.filter-btn {
    background: #f3f4f6;
    color: #4b5563;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.blog-posts {
    padding: 2rem 0 4rem;
}

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

.blog-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.post-image {
    position: relative;
    height: 200px;
}

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

.post-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
}

.post-content {
    padding: 2rem;
}

.post-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.blog-post:hover .post-content h3 {
    color: #3b82f6;
}

.post-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.post-date {
    color: #6b7280;
    font-size: 0.875rem;
}

.read-more-link {
    background: none;
    border: none;
    color: #3b82f6;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.read-more-link:hover {
    color: #1e40af;
}

.newsletter-signup {
    background: #f8fafc;
    padding: 4rem 0;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form button {
    background: linear-gradient(135deg, #3b82f6, #1e3a8a);
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.newsletter-disclaimer {
    color: #6b7280;
    font-size: 0.875rem;
}

.popular-topics {
    padding: 4rem 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.topic-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.topic-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.topic-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.topic-link {
    background: none;
    border: none;
    color: #3b82f6;
    font-weight: 600;
    cursor: pointer;
    transition: color 0.3s ease;
}

.topic-link:hover {
    color: #1e40af;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .story-content,
    .choose-content,
    .service-showcase,
    .project-showcase,
    .form-content,
    .materials-content,
    .featured-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-showcase.reverse,
    .project-showcase.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 100%;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-text p {
        font-size: 1rem;
    }
    
    .slider-btn {
        padding: 0.5rem;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 1rem;
    }
    
    .next-btn {
        right: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .qr-section {
        flex-direction: column;
        text-align: center;
    }
    
    .experience-badge {
        position: static;
        margin-top: 1rem;
        align-self: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .nav-logo .logo-placeholder {
        width: 80px;
        height: 80px;
        font-size: 10px;
    }
    
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .slider-container {
        height: 400px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .feature-card,
    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .qr-code {
        width: 150px;
        height: 150px;
    }
}