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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    font-weight: 400;
    letter-spacing: -0.01em;
}

html {
    scroll-behavior: smooth;
}

.wp-container {
    background: #fff;
}

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

/* Modern Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo h2 {
    color: #f1c40f;
    font-weight: 700;
    font-size: 1.8rem;
    margin: 0;
}

.logo span {
    color: #34495e;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-menu a {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-transform: none;
    letter-spacing: -0.01em;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: #3b82f6;
    transform: translateY(-1px);
}

.nav-menu a.active {
    color: #1e40af;
    font-weight: 600;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3b82f6, #1e40af);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #34495e;
    padding: 12px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1001;
    min-width: 48px;
    min-height: 48px;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle:hover {
    background: rgba(59, 130, 246, 0.1);
    color: #3b82f6;
    transform: scale(1.05);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
    background: rgba(59, 130, 246, 0.2);
}

.mobile-menu-toggle.active {
    background: rgba(59, 130, 246, 0.1);
    color: #1e40af;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
        flex-direction: column;
        box-shadow: -8px 0 32px rgba(0,0,0,0.12);
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        gap: 0;
        padding: 100px 0 40px 0;
        z-index: 1000;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        padding: 20px 30px;
        font-size: 1.1rem;
        position: relative;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        margin: 0 20px 8px 20px;
        border-radius: 16px;
        display: flex;
        align-items: center;
        min-height: 56px;
        font-weight: 500;
        border: 2px solid transparent;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        border-radius: 2px;
        transition: height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu a:hover {
        background: rgba(59, 130, 246, 0.08);
        transform: translateX(8px);
        color: #1e40af;
        border-color: rgba(59, 130, 246, 0.2);
    }
    
    .nav-menu a:hover::before {
        height: 24px;
    }
    
    .nav-menu a.active {
        background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
        color: white;
        font-weight: 600;
        box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
        transform: translateX(4px);
    }
    
    .nav-menu a.active::before {
        height: 32px;
        background: rgba(255, 255, 255, 0.3);
    }
    
    .nav-menu a:active {
        transform: translateX(4px) scale(0.98);
    }
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    background: url('images/Slide 1.jpg') center/cover no-repeat;
    z-index: 1;
    transition: all 0.8s ease-in-out;
}

.hero-bg.slide1 {
    background: url('images/Slide 1.jpg') center/cover no-repeat;
}

.hero-bg.slide2 {
    background: url('images/Slide 2.jpg') center/cover no-repeat;
}

.hero-bg.slide3 {
    background: url('images/Slide 3.jpg') center/cover no-repeat;
}

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

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text {
    animation: slideInUp 1s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero {
        height: 70vh;
        min-height: 500px;
    }
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2rem;
    line-height: 1.1;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-text p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 3rem;
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text p {
        font-size: 1.2rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-transform: none;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
    color: #fff;
    box-shadow: 0 4px 12px rgba(59,130,246,0.3), 0 2px 4px rgba(0,0,0,0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59,130,246,0.4), 0 4px 12px rgba(0,0,0,0.15);
}

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

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

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background: #fff;
    color: #34495e;
}

@media (max-width: 768px) {
    .btn-primary, .btn-secondary {
        padding: 12px 25px;
        font-size: 0.9rem;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 4;
}

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

.indicator.active {
    background: #f1c40f;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(255,255,255,0.8);
}

@media (max-width: 768px) {
    .hero-indicators {
        bottom: 20px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

.service-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .service-img {
        height: 180px;
    }
}

/* Modern Features Section */
.features {
    padding: 120px 0;
    background: #f8f9fa;
    position: relative;
}

@media (max-width: 768px) {
    .features {
        padding: 60px 0;
    }
}

.features h2 {
    text-align: center;
    font-size: 3.5rem;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    color: #1e293b;
    margin-bottom: 5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    position: relative;
}

.features h2::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
}

@media (max-width: 768px) {
    .features h2 {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }
}

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

.feature-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}



.feature-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.feature-card h3 {
    color: #34495e;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .feature-card {
        padding: 2rem 1.5rem;
    }
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.feature-icon svg {
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    transform: scale(1.1);
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Refresh Style Services Preview */
.services-preview {
    padding: 100px 0;
    background: #fff;
    color: #34495e;
}

@media (max-width: 768px) {
    .services-preview {
        padding: 60px 0;
    }
}

.services-preview h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 4rem;
    font-weight: 700;
    color: #34495e;
}

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

.service-card {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: none;
    border: none;
    transition: all 0.3s;
    opacity: 0;
    transform: translateY(30px);
}

.service-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    background: #fff;
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #f1c40f;
    font-weight: 700;
}

@media (max-width: 768px) {
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.service-card p {
    line-height: 1.6;
}

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

/* Refresh Style CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    text-align: center;
    color: #fff;
}

@media (max-width: 768px) {
    .cta {
        padding: 60px 0;
    }
}

.cta h2 {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta p {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .cta h2 {
        font-size: 2.2rem;
    }
    
    .cta p {
        font-size: 1.1rem;
    }
}

/* Refresh Style Footer */
.footer {
    background: #34495e;
    color: #fff;
    padding: 60px 0 30px;
}

@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #f1c40f;
    font-weight: 700;
    font-size: 1.2rem;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #f1c40f;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #ccc;
}

/* Breadcrumb Header with Slide 1 Background */
.page-header {
    position: relative;
    background: url('images/Slide 1.jpg') center/cover no-repeat;
    padding: 140px 0 100px;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

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

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
}

.content-section {
    padding: 100px 0;
}

.content-section h2 {
    font-size: 3rem;
    color: #34495e;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.content-section h3 {
    font-size: 2rem;
    color: #f1c40f;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.content-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .content-section {
        padding: 60px 0;
    }
    
    .content-section h2 {
        font-size: 2.2rem;
    }
    
    .content-section h3 {
        font-size: 1.6rem;
    }
}

/* Modern Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #475569;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    position: static;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 18px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 4px rgba(59,130,246,0.1), 0 4px 12px rgba(59,130,246,0.15);
    background: rgba(255,255,255,0.95);
    transform: translateY(-1px);
}



.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #f1c40f;
    box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}

.field-error {
    color: #f1c40f;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

.form-error {
    background: #fefbf2;
    color: #f1c40f;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #fecaca;
}

/* Loading Spinner */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
    margin-right: 8px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Portfolio Section */
.portfolio-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.portfolio-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #34495e;
    margin-bottom: 1rem;
    font-weight: 700;
}

.portfolio-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.portfolio-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.portfolio-images {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.before-after {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.before-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .before-overlay {
    opacity: 1;
}

.before-overlay span {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.view-btn {
    background: #f1c40f;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
}

.portfolio-info {
    padding: 1.5rem;
}

.portfolio-info h3 {
    color: #34495e;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.portfolio-info p {
    color: #666;
    margin-bottom: 1rem;
}

.project-stats {
    color: #f1c40f;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Portfolio Modal */
.portfolio-modal-content {
    max-width: 800px;
    width: 100%;
}

.before-after-slider {
    position: relative;
    margin-bottom: 2rem;
}

.slider-container {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
}

.slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: #f1c40f;
    cursor: ew-resize;
    z-index: 10;
}

.slider-handle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -8px;
    width: 20px;
    height: 20px;
    background: #f1c40f;
    border-radius: 50%;
    transform: translateY(-50%);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-weight: 600;
    color: #666;
}

.project-details h3 {
    color: #34495e;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.project-location {
    color: #666;
    margin-bottom: 1rem;
}

.project-description {
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.meta-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

/* Trust Signals */
.trust-signals {
    padding: 40px 0;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.trust-item {
    padding: 1rem;
}

.trust-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.trust-item h4 {
    color: #34495e;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.trust-item p {
    color: #666;
    font-size: 0.8rem;
    margin: 0;
}

/* Guarantees Section */
.guarantees-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.guarantees-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #34495e;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.guarantee-card {
    background: #fff;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

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

.guarantee-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.guarantee-card h3 {
    color: #34495e;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.guarantee-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guarantee-card ul {
    text-align: left;
    color: #555;
    line-height: 1.8;
}

.guarantee-card li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

.guarantee-card li:before {
    content: '✓';
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.certifications {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.certifications h3 {
    color: #34495e;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.cert-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.cert-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-weight: 600;
    color: #34495e;
}

.cert-icon {
    font-size: 1.2rem;
}

.cta-trust {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.trust-point {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    font-size: 1rem;
}

/* Accessibility Enhancements */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus {
    outline: 2px solid #f1c40f;
    outline-offset: 2px;
}

.portfolio-item:focus,
.whatsapp-float:focus,
.indicator:focus {
    outline: 3px solid #f1c40f;
    outline-offset: 3px;
}

.modal {
    outline: none;
}

.modal:focus {
    outline: none;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* PWA Features */
.install-btn {
    background: #34495e;
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 1rem;
}

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

.update-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #3498db;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.update-notification button {
    background: rgba(255,255,255,0.2);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.update-notification button:hover {
    background: rgba(255,255,255,0.3);
}

.network-status {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    z-index: 10000;
    animation: slideUp 0.3s ease;
}

.network-status.success {
    background: #27ae60;
    color: white;
}

.network-status.warning {
    background: #f39c12;
    color: white;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.offline .whatsapp-float {
    opacity: 0.5;
    pointer-events: none;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .project-meta {
        grid-template-columns: 1fr;
    }
    
    .slider-container {
        height: 200px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .guarantees-grid {
        grid-template-columns: 1fr;
    }
    
    .cert-badges {
        grid-template-columns: 1fr;
    }
    
    .cta-trust {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

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

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.checkbox-item:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: #3b82f6;
    transform: translateY(-1px);
}

.checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #3b82f6;
    cursor: pointer;
}

.checkbox-item label {
    position: static;
    font-size: 0.95rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    background: none;
    padding: 0;
    margin: 0;
    transition: color 0.3s;
}

.checkbox-item:hover label {
    color: #3b82f6;
}

.checkbox-item input[type="checkbox"]:checked + label {
    color: #1e40af;
    font-weight: 600;
}

/* Modern About Page Styles */
.about-hero {
    padding: 100px 0;
    background: #fff;
}

/* Page-specific breadcrumb backgrounds */
.page-header.about-header {
    background: url('images/Slide 1.jpg') center/cover no-repeat;
}

.page-header.services-header {
    background: url('images/Slide 1.jpg') center/cover no-repeat;
}

.page-header.request-header {
    background: url('images/Slide 1.jpg') center/cover no-repeat;
}

.page-header.reviews-header {
    background: url('images/Slide 1.jpg') center/cover no-repeat;
}

.page-header.contact-header {
    background: url('images/Slide 1.jpg') center/cover no-repeat;
}

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

.about-img, .team-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mission-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f1c40f 0%, #f39c12 100%);
    color: #fff;
    text-align: center;
}

.mission-content h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.mission-content p {
    font-size: 1.4rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.value-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

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

.value-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.team-section {
    padding: 100px 0;
    background: #fff;
}

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

.team-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    color: #f1c40f;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: #666;
    font-weight: 600;
}

@media (max-width: 768px) {
    .about-hero-content,
    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-img, .team-img {
        height: 300px;
    }
    
    .mission-content h2 {
        font-size: 2.2rem;
    }
    
    .mission-content p {
        font-size: 1.2rem;
    }
    
    .team-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* Loading Skeleton Animation */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Smooth Page Transitions */
body {
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

body.loaded {
    opacity: 1;
}

/* Enhanced Mobile Experience */
@media (max-width: 1024px) {
    .container {
        padding: 0 20px;
    }
    
    .features-grid,
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Larger touch targets */
    .btn-primary, .btn-secondary {
        min-height: 52px;
        padding: 18px 36px;
        font-size: 1.1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 52px;
        padding: 20px 18px;
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .features-grid,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
}

/* Reviews Section */
.reviews-section {
    padding: 80px 0;
    background: #fff;
}

.reviews-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #34495e;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.review-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.review-card.enhanced {
    text-align: left;
    background: #fff;
    border: 1px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

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

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1c40f, #f39c12);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.reviewer-name {
    font-weight: 600;
    color: #34495e;
    font-size: 1rem;
}

.reviewer-location {
    color: #666;
    font-size: 0.85rem;
}

.verified-badge {
    background: #27ae60;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.review-text {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #444;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #f1f3f4;
}

.service-type {
    background: #f1c40f;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.review-date {
    color: #999;
    font-size: 0.85rem;
}

.reviewer {
    color: #666;
    font-style: italic;
    font-size: 0.9rem;
}

.review-platforms {
    text-align: center;
    margin-top: 2rem;
}

.platform-link {
    display: inline-block;
    margin: 0 1rem;
    padding: 10px 20px;
    background: #fff;
    color: #34495e;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #f1c40f;
}

.platform-link:hover {
    background: #f1c40f;
    color: #fff;
}

.platform-logo {
    height: 20px;
    width: auto;
    margin-right: 8px;
    vertical-align: middle;
}

.social-logo {
    height: 18px;
    width: 18px;
    margin-right: 6px;
    vertical-align: middle;
}

/* Social & Maps Section */
.social-maps {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.social-feed h3, .service-area h3 {
    color: #34495e;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.social-posts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

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

.social-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0.5rem;
}

.social-links a {
    display: inline-block;
    margin-right: 1rem;
    color: #f1c40f;
    text-decoration: none;
    font-weight: 600;
}

.map-container {
    margin-bottom: 1rem;
}

/* Promotions Section */
.promotions {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    color: #34495e;
    position: relative;
}

.promo-banner {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.promo-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.promo-code {
    background: rgba(255,255,255,0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

.referral-program {
    text-align: center;
    background: rgba(255,255,255,0.15);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

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

.referral-program h4 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.referral-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #f1c40f;
    text-shadow: none;
    margin-bottom: 0.5rem;
}

.referral-steps {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
    font-size: 0.9rem;
}

.referral-steps span {
    background: rgba(52,73,94,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    color: #34495e;
}

.btn-referral {
    background: #f1c40f;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-referral:hover {
    background: #f39c12;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231,76,60,0.3);
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .social-maps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-posts {
        grid-template-columns: 1fr;
    }
    
    .promo-banner {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .platform-link {
        display: block;
        margin: 0.5rem 0;
    }
    
    .referral-steps {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .referral-amount {
        font-size: 2.5rem;
    }
}

/* Review Form Styles */
.star-rating {
    display: flex;
    gap: 5px;
    margin: 10px 0;
}

.star {
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.3;
    transition: opacity 0.2s;
}

.star:hover {
    opacity: 1;
}

.thank-you-message {
    text-align: center;
    padding: 3rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.thank-you-message h3 {
    color: #f1c40f;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.thank-you-message p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

/* Modern Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    position: relative;
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-header h3 {
    color: #34495e;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.modal-header p {
    color: #666;
    font-size: 1rem;
}

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

.modal-input {
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: inherit;
}

.modal-input:focus {
    outline: none;
    border-color: #f1c40f;
    box-shadow: 0 0 0 3px rgba(231,76,60,0.1);
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.modal-btn {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-btn-primary {
    background: #f1c40f;
    color: #fff;
}

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

.modal-btn-secondary {
    background: #f8f9fa;
    color: #666;
    border: 2px solid #e1e5e9;
}

.modal-btn-secondary:hover {
    background: #e9ecef;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #f1c40f;
}

.modal-success {
    text-align: center;
    color: #27ae60;
    font-size: 1.1rem;
    margin: 1rem 0;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
    }
}

body.menu-open {
    overflow: hidden;
}

.navbar.menu-open::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(3px);
    z-index: 999;
}

/* Breadcrumb Navigation */
.breadcrumb {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 12px 24px;
    border-radius: 25px;
    border: 1px solid rgba(255,255,255,0.2);
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
    margin: 0 8px;
}

.breadcrumb .current {
    color: #f1c40f;
    font-weight: 600;
}

@media (max-width: 768px) {
    .breadcrumb {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .hero-content,
    .features,
    .services-preview,
    .cta,
    .content-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .star {
        font-size: 1.5rem;
    }
    
    .modal {
        padding: 2rem 1.5rem;
        margin: 20px;
    }
    
    .modal-buttons {
        flex-direction: column;
    }
    
    .nav-menu {
        width: 100%;
        right: -100%;
    }
    
    .breadcrumb {
        bottom: 15px;
        padding: 8px 16px;
        font-size: 0.8rem;
    }
}