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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #53050b;
    background: #eee0d5;
}

.footer-container{
    display: flex;
    justify-content: space-around;
}

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

/* Header and Navigation */
header {
    background: #eee0d5;
    color: #53050b;
    padding: 0.5rem 0;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    height: 60px;
}

.sticky-class {
    position: sticky;
}

nav {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    height: 100%;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #eec707;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #53050b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-links a:hover {
    color: #eec707;
    background: rgba(238, 199, 7, 0.15);
}

/* KERDIM Homepage */
.kerdim-homepage {
    min-height: 100vh;
    height: auto;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 6% 60px 6%;
}

.slideshow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.3) contrast(1.2);
}

.homepage-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(83, 5, 11, 0.5) 0%, 
        rgba(246, 86, 6, 0.2) 50%, 
        rgba(238, 199, 7, 0.1) 100%);
    z-index: 2;
}

.homepage-content {
    position: relative;
    z-index: 3;
    color: #ffffff;
    max-width: 600px;
    animation: fadeInUp 1.5s ease-out;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.homepage-intro {
    margin-bottom: 3rem;
}

.section-subtitle {
    color: #eec707;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: none;
}

.company-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.company-description {
    font-size: 1.1rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.homepage-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    max-width: 750px;
}

.stat-card {
    text-align: left;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(238, 199, 7, 0.3);
}

.stat-title {
    color: #eec707;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-subtitle {
    color: #eec707;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.stat-description {
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

.homepage-bottom-section {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    max-width: 750px;
}

.stat-card:nth-child(3) .stat-description {
    margin-top: 5.5vh;
}

/* Right side quote positioning */
.homepage-quote-right {
    position: absolute;
    right: 4%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 400px;
    z-index: 3;
}

/* Bottom contact section */
.homepage-bottom-contact {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
}

.bottom-cta-text {
    font-size: 1.2rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    margin-bottom: 1rem;
    font-weight: 500;
}

.main-cta-button-bottom {
    display: inline-block;
    background: linear-gradient(45deg, #eec707, #f65606);
    color: #53050b;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(238, 199, 7, 0.4);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    min-width: 300px;
}

.main-cta-button-bottom:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 199, 7, 0.6);
    background: linear-gradient(45deg, #f65606, #eec707);
}

.homepage-cta {
    flex: 1;
    text-align: left;
}

.homepage-quote {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.95;
    position: relative;
    padding-left: 2rem;
    font-style: italic;
    position: relative;
    padding: 0;
    margin: 0 0 2rem 0;
}

.homepage-quote::before {
    content: '"';
    font-size: 4rem;
    color: #eec707;
    position: absolute;
    top: -1rem;
    left: -2rem;
    line-height: 1;
    opacity: 0.7;
}

.homepage-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: #eec707;
    font-style: normal;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.main-cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #eec707, #f65606);
    color: #53050b;
    border: none;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(238, 199, 7, 0.4);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.main-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(238, 199, 7, 0.6);
    background: linear-gradient(45deg, #f65606, #eec707);
}

.cta-subtitle {
    font-size: 0.95rem;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    opacity: 0.9;
}

/* Hero Logo */
.hero-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 10;
}

.sunbrush-section-logo {
    width: auto;
    height: 3rem;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

/* Navigation Logo Update - Floating Logo */
.floating-logo {
    position: fixed;
    top: 10px;
    left: 20px;
    z-index: 1001;
    background: rgba(238, 224, 213, 0.95);
    border-radius: 50%;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

#main-logo {
    width: auto;
    height: 150px !important;
    max-width: 100%;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0,0,0,0.2));
}

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

/* Responsive for KERDIM Homepage */
@media (max-width: 768px) {
    .kerdim-homepage {
        min-height: 150vh;
        height: auto;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 100px 4% 80px 4%;
    }
    
    .homepage-content {
        max-width: 100%;
        width: 100%;
        gap: 2.5rem;
        padding-bottom: 4rem;
    }
    
    .company-title {
        font-size: 2.2rem;
    }
    
    .company-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .homepage-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-title {
        font-size: 1.5rem;
    }
    
    .stat-subtitle {
        font-size: 1.2rem;
    }
    
    .homepage-quote-right {
        position: static;
        right: auto;
        top: auto;
        transform: none;
        max-width: 90%;
        margin: 2rem auto;
        text-align: center;
    }
    
    .homepage-bottom-contact {
        position: static;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 3rem;
        margin-bottom: 2rem;
    }
    
    .main-cta-button-bottom {
        min-width: 250px;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .bottom-cta-text {
        font-size: 1.1rem;
    }
    
    .homepage-quote {
        font-size: 1rem;
        padding-left: 1.5rem;
    }
    
    .homepage-quote::before {
        font-size: 3rem;
        top: -0.5rem;
        left: -1rem;
    }
    
    .floating-logo {
        top: 5px;
        left: 10px;
        padding: 5px;
    }
    
    #main-logo {
        height: 65px !important;
    }
    
    .main-cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-logo {
        top: 1rem;
        left: 1rem;
    }
    
    .sunbrush-section-logo {
        display: none;
       
    }
}

/* Hero */
.hero {
    min-height: 60vh;
    height: 60vh;
    display: flex;
    align-items: center;
    background: #eee0d5;
    color: #53050b;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-left: 4vw;
}

.hero-content {
    flex: 1 1 0;
    padding: 0 2rem 0 0;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    background: #eec707;
    color: #53050b;
    border: none;   
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(238, 199, 7, 0.25);
}

.cta-button:hover {
    background: #53050b;
    color: #eec707;
    box-shadow: 0 6px 20px 0 rgba(83, 5, 11, 0.35);
}

.hero-media {
    flex: 0 1 52vw;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 320px;
    padding: 2rem 4vw 2rem 2rem;
}

#hero-video, #thirty-degrees-video {
    width: 100%;
    max-width: 850px;
    max-height: 80vh;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
    background: #dad7cd;
    display: block;
}

#hero-video::-webkit-media-controls, 
#thirty-degrees-video::-webkit-media-controls {
    opacity: 0;
    transition: opacity 0.2s;
}

#hero-video:hover::-webkit-media-controls, 
#thirty-degrees-video:hover::-webkit-media-controls {
    opacity: 1;
}

.hero-media video, .gallery-video video {
    width: 100%;
    height: auto;
    max-height: 70vh;
    display: block;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

/* Sections */
section {
    padding: 4rem 0;
}

section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #53050b;
    position: relative;
    background: none;
}

section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #eec707;
    margin: 1rem auto;
    border-radius: 2px;
}

section:not(.hero) {
    position: relative;
    z-index: 2;
    background: inherit;
}

section:not(.hero):not(.contact-info):not(.technologies-section):nth-of-type(even) {
    background: #eee0d5;
}
section:not(.hero):not(.contact-info):nth-of-type(odd) {
    background: #ffffff;
}

.robots-section {
    background: #eee0d5;
}

.robots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    width: 80%;
    margin: 0 auto;
}

/* Services Section */
/* Services Section - New Design */
.services-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #eec707, #f65606);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(238, 199, 7, 0.3);
}

.sparkles-icon {
    color: white;
}

.services-header h2 {
    font-size: 3rem;
    color: #53050b;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

.services-description {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 1px solid rgba(238, 199, 7, 0.1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: rgba(238, 199, 7, 0.3);
}

.service-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

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

.service-content {
    padding: 30px 25px;
}

.service-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #eec707, #f65606);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon {
    color: white;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #53050b;
    margin-bottom: 8px;
    font-weight: 700;
}

.service-subtitle {
    font-size: 0.95rem;
    color: #f65606;
    margin-bottom: 15px;
    font-weight: 600;
}

.service-description {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

/* View All Section */
.view-all-section {
    text-align: center;
    margin-bottom: 80px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #53050b, #f65606);
    color: white;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(83, 5, 11, 0.3);
}

.view-all-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(83, 5, 11, 0.4);
}

.view-all-btn:hover .arrow-icon {
    transform: translateX(3px);
}

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

/* Services Footer */
.services-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #eee0d5 100%);
    padding: 60px 40px;
    border-radius: 25px;
    text-align: center;
    border: 2px solid rgba(238, 199, 7, 0.2);
}

.footer-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-header h3 {
    font-size: 2rem;
    color: #53050b;
    margin: 0;
    font-weight: 700;
}

.footer-header .sparkles-icon {
    color: #eec707;
}

.services-footer > p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.equipment-section h4,
.coverage-section h4 {
    color: #f65606;
    font-size: 1.3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.equipment-list,
.coverage-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipment-list li,
.coverage-list li {
    padding: 12px 0;
    color: #53050b;
    font-weight: 500;
    line-height: 1.6;
}

.cta-btn {
    background: linear-gradient(45deg, #eec707, #f65606);
    color: #53050b;
    padding: 18px 40px;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(238, 199, 7, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}


.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(238, 199, 7, 0.6);
}

/* Service Dialog Modal */
.service-dialog {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 20px;
}

.service-dialog.active {
    display: flex;
}

.dialog-content {
    background: white;
    border-radius: 25px;
    max-width: 1000px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

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

/* Rest of your existing modal CSS... */
.dialog-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    border-bottom: 2px solid #eee0d5;
}

.dialog-header h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    color: #53050b;
    margin: 0;
    font-weight: 700;
}

.dialog-header h2::after {
    background: none !important;
}

.settings-icon {
    color: #eec707;
}

.close-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: #f5f5f5;
    color: #53050b;
}

/* Dialog Tabs */
.dialog-tabs {
    padding: 0 40px 40px;
}

.tabs-list {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee0d5;
}

.tab-trigger {
    background: none;
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    font-size: 1rem;
}

.tab-trigger.active {
    color: #53050b;
    border-bottom-color: #eec707;
}

.tab-trigger:hover {
    color: #53050b;
    background: rgba(238, 224, 213, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Service Detail Grid */
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.service-detail-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #eec707, #f65606);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-detail-icon svg {
    color: white;
}

.service-detail-header h3 {
    font-size: 1.6rem;
    color: #53050b;
    margin: 0 0 5px 0;
    font-weight: 700;
}

.service-detail-header p {
    color: #f65606;
    margin: 0;
    font-weight: 600;
}

.service-detail-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    font-size: 1.05rem;
}

.service-offerings h4 {
    color: #53050b;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-offerings ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.service-offerings li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(238, 224, 213, 0.2);
    border-radius: 10px;
    color: #53050b;
    font-weight: 500;
    line-height: 1.4;
}

.check-icon {
    color: #eec707;
    flex-shrink: 0;
    margin-top: 2px;
}

.service-detail-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 3px solid #eec707;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    min-height: 300px;
    max-height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Concrete Waxing Special Section */
.concrete-waxing-section {
    margin: 40px -40px 0 -40px; /* Break out of dialog padding */
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #eee0d5 100%);
    border-radius: 0;
    border-top: 5px solid #eec707;
    border-bottom: 5px solid #eec707;
}

.concrete-waxing-section h4 {
    color: #f65606;
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.concrete-waxing-section > p {
    color: #53050b;
    margin-bottom: 25px;
    line-height: 1.6;
}

.waxing-benefits h5,
.suitable-spaces h5,
.process-steps h5 {
    color: #53050b;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.benefits-grid,
.spaces-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.benefits-grid li,
.spaces-grid li {
    padding: 8px 12px;
    background: white;
    border-radius: 8px;
    color: #53050b;
    font-size: 0.9rem;
    font-weight: 500;
    border-left: 3px solid #eec707;
}

.process-steps ol {
    padding-left: 20px;
    margin: 0;
}

.process-steps li {
    margin-bottom: 10px;
    color: #53050b;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .concrete-waxing-section {
        margin: 30px -20px 0 -20px;
        padding: 30px 20px;
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-detail-image {
        order: -1;
    }
    
    .footer-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0;
    }
    
    .services-header {
        margin-bottom: 60px;
        padding: 0 20px;
    }
    
    .services-header h2 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
    
    .service-content {
        padding: 25px 20px;
    }
    
    .view-all-section {
        margin-bottom: 60px;
        padding: 0 20px;
    }
    
    .services-footer {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .dialog-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .dialog-header {
        padding: 25px 20px;
    }
    
    .dialog-tabs {
        padding: 0 20px 30px;
    }
    
    .tabs-list {
        flex-wrap: wrap;
        gap: 5px;
    }
    
    .tab-trigger {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .service-detail-grid {
        gap: 25px;
    }
    
    .benefits-grid,
    .spaces-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-header h2 {
        font-size: 2rem;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    .service-content h3 {
        font-size: 1.3rem;
    }
    
    .dialog-header h2 {
        font-size: 1.5rem;
    }
    
    .service-detail-header h3 {
        font-size: 1.4rem;
    }
    
    .concrete-waxing-section {
        padding: 20px;
    }
}

/* Technology Section */
.technology-section {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 60px;
    border-left: 5px solid #eec707;
}

.technology-section h3 {
    font-size: 2rem;
    color: #53050b;
    margin-bottom: 20px;
    font-weight: 700;
}

.technology-section > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

.tech-item {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(238, 199, 7, 0.2);
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(238, 199, 7, 0.05);
    border-color: #eec707;
}

.tech-item h4 {
    color: #f65606;
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.tech-item p {
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Coverage Section */
.coverage-section {
    text-align: center;
    background: linear-gradient(135deg, #eee0d5 0%, #f5f0e8 100%);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(238, 199, 7, 0.3);
}

.coverage-section h3 {
    font-size: 2rem;
    color: #53050b;
    margin-bottom: 20px;
    font-weight: 700;
}

.coverage-section p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services-cta {
    display: inline-block;
    background: linear-gradient(45deg, #f65606, #eec707);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(246, 86, 6, 0.3);
}

.services-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(246, 86, 6, 0.4);
}

/* Footer */
footer {
    background: #53050b;
    color: #eee0d5;
    padding: 3rem 0 1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-section {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2.5rem;
    width: 100%;
    justify-content: flex-start;
}

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

.footer-section p {
    color: #eee0d5;
    margin-bottom: 0.5rem;
}

.footer-contact-block {
    min-width: 180px;
    margin-right: 2.5rem;
}

.footer-contact-block h3 {
    margin-bottom: 0.5em;
    color: #eec707;
}

.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.2em 0;
}

.footer-contact-list li {
    margin-bottom: 0.4em;
    color: #eee0d5;
    font-size: 1rem;
}

.footer-contact-list a {
    color: #f65606;
    text-decoration: underline;
}

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

.social-links a {
    color: #eee0d5;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

/* Technologies Section - Bugatti Style */
.technologies-section {
    background: #0a0a0a;
    color: white;
    padding: 100px 0;
    position: relative;
}

.technologies-section .section-header {
    text-align: center;
    margin-bottom: 80px;
}

.technologies-section h2 {
    font-size: 3.5rem;
    font-weight: 300;
    letter-spacing: 4px;
    background-image: linear-gradient(#f65606, #eec707);
    color: transparent;
    background-clip: text;
    margin: 0;
    text-transform: uppercase;
}

/* Tech Cards Grid */
.tech-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Individual Tech Card */
.tech-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #eee0d5 100%);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(238, 199, 7, 0.2);
    position: relative;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(238, 199, 7, 0.3);
    border-color: rgba(238, 199, 7, 0.6);
}

.tech-card-content {
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 500px;
}

/* Card Header */
.tech-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.tech-subtitle {
    font-size: 0.9rem;
    color: #eec707;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    display: block;
    margin-bottom: 15px;
}

.tech-card-title {
    font-size: 2.8rem;
    font-weight: 300;
    color: #f65606;
    margin: 0;
    letter-spacing: 2px;
    font-style: italic;
}

/* Card Image */
.tech-card-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(45deg, #f65606, #eec707);
    padding: 3px;
}

.tech-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.tech-card:hover .tech-card-image img {
    transform: scale(1.05);
}

/* Learn More Button */
.tech-learn-more {
    display: block;
    text-align: center;
    background: linear-gradient(45deg, #f65606, #eec707);
    color: #0a0a0a;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.tech-learn-more:hover {
    background: #eec707;
    color: #0a0a0a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(238, 199, 7, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .tech-cards-grid {
        gap: 30px;
        padding: 0 40px;
    }
    
    .technologies-section h2 {
        font-size: 3rem;
    }
    
    .tech-card-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    /* Remove any max-width constraints on mobile */
    * {
        max-width: 100%;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
    }
    
    .kerdim-homepage {
        padding: 15vh 15px 0 15px;
        width: 100%;
        min-height: 100vh;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
    
    .slideshow-container,
    .slide,
    .homepage-overlay {
        width: 100%;
    }
    
    .homepage-content {
        max-width: 100%;
        width: 100%;
        padding: 0;
        text-align: center;
    }
    
    .company-title {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .company-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    /* Stack homepage stats vertically */
    .homepage-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
        width: 100%;
    }
    
    .stat-card {
        width: 100%;
        text-align: center;
        padding: 1rem;
    }
    
    /* Move quote and contact to stack below content */
    .homepage-quote-right {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        width: 100%;
        margin: 2rem 0;
        text-align: center;
        order: 2;
    }
    
    .homepage-bottom-contact {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin: 2rem 0;
        width: 100%;
        order: 3;
    }
    
    .main-cta-button-bottom {
        width: 100%;
        max-width: 300px;
        min-width: auto;
    }
    
    .floating-logo {
        top: 10px;
        left: 15px;
    }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        height: auto;
        min-height: 70vh;
        padding: 2rem 15px;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 2rem;
        order: 1;
    }
    
    .hero-content h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-media {
        width: 100%;
        flex: none;
        padding: 0;
        order: 2;
    }
    
    #hero-video, #thirty-degrees-video {
        width: 100%;
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 15px;
    }
    
    .services-hero {
        width: 100%;
        margin-bottom: 60px;
        padding: 0;
    }
    
    .services-hero h2 {
        font-size: 2rem;
    }
    
    .services-tagline {
        font-size: 1.2rem;
    }
    
    .services-description {
        font-size: 1rem;
    }
    
    /* Stack service cards */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }
    
    .service-card {
        width: 100%;
        padding: 30px 20px;
        margin: 0;
    }
    
    /* Featured service mobile */
    .featured-service {
        padding: 40px 20px;
        margin: 60px 0;
    }
    
    .featured-service-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .featured-service h3 {
        font-size: 1.8rem;
    }
    
    /* Technology sections stack */
    .technology-section {
        padding: 30px 20px;
        margin-bottom: 40px;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .coverage-section {
        padding: 30px 20px;
    }
}

@media (max-width: 768px) {
    .technologies-section {
        padding: 60px 15px;
        width: 100%;
    }
    
    .technologies-section .section-header {
        margin-bottom: 60px;
        width: 100%;
    }
    
    .technologies-section h2 {
        font-size: 2rem;
        letter-spacing: 1px;
    }
    
    /* Stack tech cards */
    .tech-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0;
        width: 100%;
    }
    
    .tech-card {
        width: 100%;
        margin: 0;
    }
    
    .tech-card-content {
        padding: 25px 20px;
        min-height: 400px;
    }
    
    .tech-card-title {
        font-size: 1.8rem;
    }
    
    .tech-card-image img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 2rem 15px 1rem;
        width: 100%;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 1.5rem;
        width: 100%;
        padding: 0;
    }
    
    .footer-block {
        width: 100%;
        min-width: 0;
        margin-bottom: 1rem;
    }
    
    .footer-bottom {
        width: 100%;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 15px;
        width: 100%;
    }
    
    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    /* Remove alternating backgrounds on mobile for better stacking */
    section:not(.hero):not(.contact-info):not(.technologies-section):nth-of-type(even),
    section:not(.hero):not(.contact-info):nth-of-type(odd) {
        background: #ffffff;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
    
    .kerdim-homepage {
        padding: 10vh 10px 0 10px;
    }
    
    .homepage-content {
        padding: 0;
    }
    
    .company-title {
        font-size: 1.8rem;
    }
    
    .services-section {
        padding: 40px 10px;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .featured-service {
        padding: 30px 15px;
    }
    
    .technology-section {
        padding: 25px 15px;
    }
    
    .technologies-section {
        padding: 40px 10px;
    }
    
    .tech-card-content {
        padding: 20px 15px;
    }
    
    .tech-card-title {
        font-size: 1.6rem;
    }
    
    .site-footer {
        padding: 1.5rem 10px 1rem;
    }
    
    section {
        padding: 2.5rem 10px;
    }
    
    section h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .services-hero h2 {
        font-size: 1.8rem;
    }
    
    .technologies-section h2 {
        font-size: 1.8rem;
    }
}

/* Ensure no horizontal scroll */
@media (max-width: 768px) {
    html, body {
        width: 100%;
        overflow-x: hidden;
    }
    
    * {
        box-sizing: border-box;
    }
    
    /* Fix any potential width issues */
    .slideshow-container,
    .slide,
    .homepage-overlay,
    .hero,
    .services-section,
    .technologies-section,
    footer,
    .site-footer {
        width: 100%;
        max-width: 100%;
    }
}

/* Mobile Navigation Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 30px;
    z-index: 1001;
    position: relative;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #f65606;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hamburger animation */
.mobile-menu-btn.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile responsive navigation */
@media (max-width: 768px) {
    /* Show mobile menu button */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hide navigation by default on mobile */
    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(83, 5, 11, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        z-index: 1000;
        opacity: 0;
        transform: translateY(-100%);
        transition: all 0.3s ease;
    }
    
    /* Show navigation when active */
    .nav-links.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Mobile navigation links styling */
    .nav-links a {
        font-size: 1.5rem;
        color: white;
        text-decoration: none;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        min-width: 200px;
        text-align: center;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(246, 86, 6, 0.8);
        border-color: #eec707;
        transform: translateX(10px);
    }
    
    /* Adjust header for mobile */
    header {
        padding: 1rem;
        justify-content: space-between;
        align-items: center;
    }
    
    nav {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 100%;
    }
}

/* Desktop navigation remains the same */
@media (min-width: 769px) {
    .mobile-menu-btn {
        display: none;
    }
    
    .nav-links {
        display: flex;
        position: static;
        background: none;
        height: auto;
        opacity: 1;
        transform: none;
        gap: 1.5rem;
    }
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}