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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #d4af37;
    background-color: #1a1a1a;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

.header {
    background: #000;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #d4af37;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 5px;
}

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

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

.nav-menu a {
    text-decoration: none;
    color: #d4af37;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
    text-shadow: 0 0 10px #d4af37;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-actions i {
    color: #d4af37;
    cursor: pointer;
    transition: color 0.3s;
}

.nav-actions i:hover {
    color: #fff;
}

.cart-icon {
    position: relative;
    cursor: pointer;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #d4af37;
    color: #000;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.btn-quote {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    padding: 0.5rem 1rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #d4af37;
}

.btn-quote:hover {
    background: #000;
    color: #d4af37;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #d4af37;
    margin: 3px 0;
    transition: 0.3s;
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 70px;
}

.hero-slider {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
}

.slide-content {
    position: relative;
    text-align: center;
    color: #d4af37;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    color: #fff;
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #d4af37;
}

.btn-primary {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #d4af37;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: #000;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #d4af37;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    display: inline-block;
    border: 2px solid #d4af37;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-secondary:hover {
    background: #d4af37;
    color: #000;
    transform: translateY(-2px);
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid #d4af37;
    color: #d4af37;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: #d4af37;
    color: #000;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

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

.dot.active {
    background: #d4af37;
}

.offer-banner {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    padding: 1rem 0;
    text-align: center;
}

.offer-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('/placeholder.svg?height=300&width=1200');
    background-size: cover;
    background-position: center;
    color: #d4af37;
    padding: 8rem 0 4rem;
    margin-top: 70px;
    text-align: center;
    border-bottom: 3px solid #d4af37;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.breadcrumb {
    font-size: 1.1rem;
}

.breadcrumb a {
    color: #d4af37;
    text-decoration: none;
}

.why-choose-us {
    padding: 5rem 0;
    background: #2a2a2a;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #d4af37;
}

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

.feature-card {
    background: #000;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s;
    border: 2px solid #333;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.feature-icon {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.feature-card p {
    color: #d4af37;
}

.services-preview {
    padding: 5rem 0;
    background: #1a1a1a;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.service-card {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s;
    border: 2px solid #333;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-icon {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.service-content p {
    color: #d4af37;
    margin-bottom: 1rem;
}

.service-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link:hover {
    color: #fff;
}

.projects-home {
    padding: 5rem 0;
    background: #2a2a2a;
}

.projects-home h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.project-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    border: 2px solid #333;
    transition: all 0.3s;
}

.project-card:hover {
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #d4af37;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 2rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-card:hover img {
    transform: scale(1.1);
}

.project-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.project-overlay p {
    color: #d4af37;
}

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

.trust-builders {
    padding: 5rem 0;
    background: #000;
    color: #d4af37;
    text-align: center;
    border-top: 3px solid #d4af37;
    border-bottom: 3px solid #d4af37;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.trust-stat {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #d4af37;
    font-weight: 600;
}

.partners h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #fff;
}

.partner-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.partner-logo {
    background: rgba(212, 175, 55, 0.1);
    padding: 1rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid #d4af37;
    color: #d4af37;
}

.testimonials-home {
    padding: 5rem 0;
    background: #2a2a2a;
}

.testimonials-home h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.testimonial-card {
    background: #000;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    border: 2px solid #333;
    transition: all 0.3s;
}

.testimonial-card:hover {
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.stars {
    color: #d4af37;
    font-size: 1.2rem;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
    font-size: 0.9rem;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #d4af37;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    font-size: 2.5rem;
    color: #d4af37;
}

.author-info h4 {
    color: #fff;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #d4af37;
    font-size: 0.9rem;
}

.review-date {
    font-size: 0.8rem;
    color: #888;
    margin-top: 0.2rem;
}

.google-reviews-link {
    text-align: center;
}

.mission-home {
    padding: 5rem 0;
    background: #1a1a1a;
}

.mission-home h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.mission-card {
    background: #000;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #333;
    transition: all 0.3s;
}

.mission-card:hover {
    border-color: #d4af37;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.mission-icon {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.mission-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.mission-tagline {
    color: #d4af37;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
}

.mission-card p {
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.mission-features {
    list-style: none;
}

.mission-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #d4af37;
}

.mission-features i {
    color: #d4af37;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background: #000;
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #d4af37;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    display: block;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 5px;
    border: 2px solid;
}

.form-message.success {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #28a745;
}

.form-message.error {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #dc3545;
}

.services-content {
    padding: 3rem 0;
    background: #1a1a1a;
}

.service-section {
    margin-bottom: 4rem;
}

.service-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #fff;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 0.5rem;
}

.service-items {
    display: grid;
    gap: 2rem;
}

.service-item {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 0;
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    border: 2px solid #333;
}

.service-item:hover {
    border-color: #d4af37;
}

.service-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-item-content {
    padding: 1.5rem;
}

.service-item-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.service-tagline {
    color: #d4af37;
    font-weight: 600;
    font-style: italic;
    margin-bottom: 1rem;
}

.service-item-content p {
    color: #d4af37;
}

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

.service-categories {
    display: flex;
    gap: 2rem;
    box-sizing: border-box;
}



.category {
    background: #000;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    border: 2px solid #333;
    width: 50%;
}


.category:hover {
    border-color: #d4af37;
}

.category h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

.category li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #333;
    color: #d4af37;
}

.category img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.portfolio-gallery {
    padding: 3rem 0;
    background: #1a1a1a;
}

.portfolio-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    border: 2px solid #d4af37;
    color: #d4af37;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn.active,
.filter-btn:hover {
    background: #d4af37;
    color: #000;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
    gap: 2rem;
    justify-content: center;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    border: 2px solid #333;
}

.portfolio-item:hover {
    border-color: #d4af37;
}

.portfolio-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    color: #d4af37;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s;
    padding: 2rem;
}

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

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

.portfolio-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #fff;
}

.portfolio-overlay p {
    color: #d4af37;
}

.btn-view {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s;
    font-weight: 600;
    text-transform: uppercase;
}

.btn-view:hover {
    background: #fff;
}

.testimonials {
    padding: 5rem 0;
    background: #2a2a2a;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: #fff;
    margin-bottom: 0.2rem;
}

.author-info span {
    color: #d4af37;
    font-size: 0.9rem;
}

.rating {
    color: #d4af37;
}

.mission-section {
    padding: 5rem 0;
    background: #1a1a1a;
}

.mission-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

.problem-section {
    padding: 5rem 0;
    background: #2a2a2a;
}

.problem-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.problem-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.problem-content p {
    color: #d4af37;
}

.problem-stat {
    text-align: center;
    margin: 2rem 0;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: #d4af37;
    display: block;
}

.problem-stat p {
    color: #d4af37;
}

.problem-image img {
    width: 100%;
    border-radius: 10px;
}

.blog-content {
    padding: 3rem 0;
    background: #1a1a1a;
}

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

.blog-post {
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s;
    border: 2px solid #333;
}

.blog-post:hover {
    transform: translateY(-5px);
    border-color: #d4af37;
}

.post-image {
    height: 200px;
    overflow: hidden;
}

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

.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-date {
    color: #888;
}

.post-category {
    background: #d4af37;
    color: #000;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: 600;
}

.post-content h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.post-content p {
    color: #d4af37;
    margin-bottom: 1rem;
}

.read-more {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.read-more:hover {
    color: #fff;
}

.special-offers {
    padding: 5rem 0;
    background: #2a2a2a;
}

.special-offers h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
}

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

.offer-card {
    background: #000;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
    position: relative;
    border: 2px solid #333;
}

.offer-card:hover {
    border-color: #d4af37;
}

.offer-badge {
    background: #d4af37;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.offer-card h3 {
    font-size: 2.5rem;
    color: #d4af37;
    margin-bottom: 0.5rem;
}

.offer-card p {
    color: #fff;
    margin-bottom: 1rem;
}

.offer-details {
    font-size: 0.9rem;
    color: #d4af37;
    margin: 1rem 0;
}

.newsletter-section {
    padding: 5rem 0;
    background: #000;
    color: #d4af37;
    text-align: center;
    border-top: 3px solid #d4af37;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.newsletter-content p {
    color: #d4af37;
    margin-bottom: 2rem;
}

.newsletter-form-large {
    display: flex;
    max-width: 500px;
    margin: 2rem auto;
    gap: 1rem;
}

.newsletter-form-large input {
    flex: 1;
    padding: 1rem;
    border: 2px solid #d4af37;
    border-radius: 5px;
    font-size: 1rem;
    background: #1a1a1a;
    color: #d4af37;
}

.newsletter-form-large input:focus {
    outline: none;
    border-color: #fff;
}

.newsletter-disclaimer {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
    color: #d4af37;
}

.contact-section {
    padding: 3rem 0;
    background: #1a1a1a;
}

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

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}

.contact-info-section p {
    color: #d4af37;
    margin-bottom: 2rem;
}

.contact-methods {
    display: grid;
    gap: 1.5rem;
}

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

.method-icon {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-content h3 {
    margin-bottom: 0.5rem;
    color: #fff;
}

.method-content p {
    color: #d4af37;
}

.phone-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover {
    color: #fff;
}

.contact-form {
    display: grid;
    gap: 1rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #333;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
    background: #000;
    color: #d4af37;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.urgent-cta {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #000;
    padding: 2rem 0;
    text-align: center;
}

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

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.time-unit {
    text-align: center;
    background: #000;
    padding: 1rem;
    border-radius: 10px;
    border: 2px solid #d4af37;
}

.time-unit span {
    display: block;
    font-size: 30px;
    font-weight: 800;
    color: #d4af37;
}

.time-unit label {
    font-size: 20px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-map {
    padding: 3rem 0;
    background: #2a2a2a;
}

.service-map h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #fff;
}

.map-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 3px solid #d4af37;
}

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

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 2rem;
}

.service-area {
    background: rgba(212, 175, 55, 0.95);
    color: #000;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    max-width: 200px;
    border: 2px solid #000;
}

.service-area h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.emergency-contact {
    background: #d4af37;
    color: #000;
    padding: 2rem 0;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.emergency-icon {
    font-size: 2rem;
    color: #000;
}

.emergency-text h3 {
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.btn-emergency {
    background: #000;
    color: #d4af37;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #000;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-emergency:hover {
    background: #d4af37;
    color: #000;
    border-color: #d4af37;
}

.cta-section {
    padding: 5rem 0;
    background: #000;
    color: #d4af37;
    text-align: center;
    border-top: 3px solid #d4af37;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #fff;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: #d4af37;
}

.footer {
    background: #000;
    color: #d4af37;
    padding: 3rem 0 1rem;
    border-top: 3px solid #d4af37;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #d4af37;
}

.footer-logo {
    height: 50px;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #d4af37;
    font-size: 1.2rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: #fff;
}

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

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

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

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

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #d4af37;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.5rem;
    border: 2px solid #d4af37;
    border-radius: 3px;
    background: #1a1a1a;
    color: #d4af37;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #fff;
}

.newsletter-form button {
    background: #d4af37;
    color: #000;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
    font-weight: 600;
    text-transform: uppercase;
}

.newsletter-form button:hover {
    background: #fff;
}

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

.scroll-to-top {
    background: linear-gradient(45deg, #d4af37, #f4d03f) !important;
    color: #000 !important;
    border: 2px solid #d4af37 !important;
}

.scroll-to-top:hover {
    background: #000 !important;
    color: #d4af37 !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5) !important;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 88px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #000;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        border-top: 2px solid #d4af37;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu a {
        font-size: 1.2rem;
        padding: 1rem;
        display: block;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid #333;
    }

    .nav-actions {
        display: none;
    }

    .slide-content h1 {
        font-size: 2.5rem;
    }

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

    .service-item {
        grid-template-columns: 1fr;
    }

    .service-item img {
        height: 200px;
    }

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

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

    .problem-section .container {
        grid-template-columns: 1fr;
    }

    .emergency-content {
        flex-direction: column;
        text-align: center;
    }

    .map-overlay {
        flex-direction: column;
        gap: 1rem;
    }

    .countdown-timer {
        gap: 1rem;
    }

    .time-unit span {
        font-size: 1.5rem;
    }

    .newsletter-form-large {
        flex-direction: column;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .prev-btn {
        left: 15px;
    }

    .next-btn {
        right: 15px;
    }

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

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

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

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

    @media (max-width: 768px) {
        .service-categories {
            flex-direction: column;
        }

        .category {
            width: 100%;
        }
    }
}

@media (max-width: 480px) {
    .slide-content h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .why-choose-us h2,
    .services-preview h2 {
        font-size: 2rem;
    }

    .countdown-timer {
        display: flex;
        justify-content: center;
    }

    .time-unit {
        padding: 8px;
    }

    .time-unit span {
        font-size: 14px;
        font-weight: 600;
    }

    .time-unit label {
        font-size: 10px;
    }

    .partner-logos {
        flex-direction: column;
        align-items: center;
    }

    .mission-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}