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

/* Global h2 Styles */
h2 {
    color: #000 !important;
    text-transform: uppercase !important;
}

/* Privacy Modal Styles */
.privacy-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

/* Gallery Lightbox Styles */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(20px);
    cursor: pointer;
}

.gallery-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    cursor: default;
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-close svg {
    width: 24px;
    height: 24px;
    color: white;
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10002;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.lightbox-prev {
    left: 30px;
    display: flex !important;
}

.lightbox-next {
    right: 30px;
    display: flex !important;
}

.lightbox-nav svg {
    width: 28px;
    height: 28px;
    color: white;
}

/* Mobile responsive lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .lightbox-nav {
        width: 50px;
        height: 50px;
        display: flex !important;
    }
    
    .lightbox-prev {
        left: 20px;
        display: flex !important;
    }
    
    .lightbox-next {
        right: 20px;
        display: flex !important;
    }
    
    .lightbox-nav svg {
        width: 24px;
        height: 24px;
    }
    
    .lightbox-close svg {
        width: 20px;
        height: 20px;
    }
}

.privacy-modal-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 800px;
    max-height: 85vh;
    z-index: 10001;
}

.privacy-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.privacy-modal-content {
    background: white;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.privacy-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    border-bottom: 1px solid #eee;
    background: #f8f9fa;
}

.privacy-modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

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

.privacy-modal-close:hover {
    background: rgba(200, 101, 43, 0.1);
    color: rgb(200, 101, 43);
}

.privacy-modal-body {
    padding: 30px;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
    line-height: 1.6;
}

.privacy-modal-body h3 {
    color: rgb(200, 101, 43);
    margin: 25px 0 15px 0;
    font-size: 1.2rem;
    font-weight: 600;
}

.privacy-modal-body p {
    margin-bottom: 15px;
    color: #333;
}

.privacy-modal-body ul {
    margin: 10px 0 15px 20px;
    color: #333;
}

.privacy-modal-body li {
    margin-bottom: 8px;
}

.privacy-modal-body strong {
    color: #000;
    font-weight: 600;
}

@media (max-width: 768px) {
    .privacy-modal-content {
        margin: 10px;
        max-height: 95vh;
    }
    
    .privacy-modal-header {
        padding: 20px;
    }
    
    .privacy-modal-body {
        padding: 20px;
        max-height: calc(95vh - 80px);
    }
    
    .privacy-modal-header h2 {
        font-size: 1.3rem;
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    color: #333;
    scroll-behavior: smooth;
    overflow-x: hidden;
    min-height: 100vh;
}

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

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: rgba(0, 123, 255, 0.1);
    z-index: 9999;
}

.scroll-progress-bar {
    width: 100%;
    height: 0%;
    background: rgb(200, 101, 43);
    transition: height 0.1s ease;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
    backdrop-filter: none;
}

.navbar-main {
    background: transparent;
    backdrop-filter: none;
}

.navbar-main.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

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

/* Logo Text Styling */
.logo-link {
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo-link:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    text-transform: uppercase;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Scrolled navbar logo - white text */
.navbar-main.scrolled .logo-text {
    color: white;
    text-shadow: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
}

.navbar-main.scrolled .nav-link {
    color: white;
    text-shadow: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.navbar-main.scrolled .hamburger span {
    background: white;
}

/* Hero Section */
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: white;
    z-index: -1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: -2;
    will-change: transform;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-bg-image.active {
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: -1;
}

.hero-content {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    max-width: 95%;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    gap: 60px;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.hero-text {
    flex: 1;
    max-width: 700px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
    max-width: 650px;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.cta-btn {
    padding: 15px 30px;
    border: none;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
}

.cta-btn.primary {
    background: rgb(200, 101, 43);
    color: white;
}

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

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #333;
}

.hero-right {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
}

.hero-stats {
    display: flex;
    gap: 30px;
    align-self: flex-start;
   
}

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.stat-plus {
    color: rgb(200, 101, 43);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-testimonial {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
    border-radius: 0;
    margin-bottom: 20px;
}

.hero-testimonial blockquote {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.4;
    color: white;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
}

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

.author-name {
    font-weight: 600;
    color: white;
}

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

.rating-stars {
    color: #ffd700;
}

.rating-score {
    font-size: 0.9rem;
    opacity: 0.8;
}

.more-testimonials {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
    align-self: flex-start;
}

.more-testimonials:hover {
    opacity: 1;
}

/* Partners Slider */
.partners-slider {
    padding: 40px 0 60px;
    background: white;
    overflow: hidden;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-track {
    display: flex;
    animation: scroll 30s linear infinite;
}

.slide {
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.slide img {
    max-width: 100px;
    max-height: 50px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

.slide:hover img {
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* About Section */
/* Hero spacer to account for fixed hero */
.hero + * {
    margin-top: 100vh;
}

.about {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 1;
}

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

.about-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.about-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-label {
    color: rgb(200, 101, 43);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.about-title {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
    letter-spacing: -0.5px;
}


.about-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333333;
}

.about-text p:first-child {
    font-size: 1.3rem;
    font-weight: 400;
    color: #333;
}

.about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #333;
    color: #333;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    text-decoration: none;
}

.about-btn:hover {
    background: #333;
    color: white;
}

.about-btn svg {
    transition: transform 0.3s ease;
}

.about-btn:hover svg {
    transform: translate(5px, -5px);
}

/* Founders Info Styling */
.founders-info {
    margin: 30px 0;
    padding: 25px;
    background: rgba(0, 123, 255, 0.05);
    border-left: 4px solid rgb(200, 101, 43);
    border-radius: 8px;
}

.founders-info h4 {
    color: rgb(200, 101, 43);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.founder {
    margin-bottom: 20px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

.founder:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.founder strong {
    color: #333;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 8px;
}

.founder br {
    margin-bottom: 4px;
}

.about-right {
    position: relative;
}

.about-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 0;
}

.about-stats {
    position: absolute;
    top: -30px;
    right: -30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    border-radius: 0;
    min-width: 250px;
}

.stat-box.stat-black {
    background: #333;
    color: white;
}

.stat-box.stat-yellow {
    background: rgb(200, 101, 43);
    color: white;
}

.stat-icon {
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-box .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 0.8;
    margin-bottom: 5px;
}

.stat-box .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

.services-header {
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

.services-title {
    font-size: 5rem;
    font-weight: 700;
    color: #000;
    text-align: left;
    margin-bottom: 20px;
    flex: 1;
}




.services-navigation {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 20px;
}

.services-btn-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}

.carousel-controls {
    display: flex;
    gap: 8px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #333;
    background: transparent;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.carousel-btn:hover {
    background: rgb(200, 101, 43);
    border-color: rgb(200, 101, 43);
    color: white;
}

.carousel-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-btn svg {
    transition: transform 0.3s ease;
}

.carousel-btn:hover svg {
    transform: scale(1.1);
}

.services-all-btn {
    background: rgb(200, 101, 43);
    color: white;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.services-all-btn:hover {
    background: rgb(200, 101, 43);
    transform: translateY(-2px);
}

.services-carousel-container {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
    /* Add padding to prevent hover border clipping */
    padding: 20px 0;
    margin: 0px -20px 0 -20px;
    width: calc(100% + 40px);
}

.services-carousel {
    display: flex;
    transition: transform 0.4s ease;
    gap: 40px;
    padding: 0 20px;
    align-items: stretch;
}

.services-carousel .service-card {
    flex: 0 0 calc(30% - 24px);
    min-width: 320px;
    height: auto;
}

.service-card {
    background: white;
    padding: 40px;
    border-radius: 0;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}

.service-card:hover::before {
    border-color: rgb(200, 101, 43);
    animation: borderMove 2s linear infinite;
}

@keyframes borderMove {
    0% {
        border-image: linear-gradient(90deg, rgb(200, 101, 43) 50%, transparent 50%) 1;
        border-image-slice: 1;
    }
    25% {
        border-image: linear-gradient(180deg, rgb(200, 101, 43) 50%, transparent 50%) 1;
        border-image-slice: 1;
    }
    50% {
        border-image: linear-gradient(270deg, rgb(200, 101, 43) 50%, transparent 50%) 1;
        border-image-slice: 1;
    }
    75% {
        border-image: linear-gradient(360deg, rgb(200, 101, 43) 50%, transparent 50%) 1;
        border-image-slice: 1;
    }
    100% {
        border-image: linear-gradient(90deg, rgb(200, 101, 43) 50%, transparent 50%) 1;
        border-image-slice: 1;
    }
}

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

.service-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: rgb(200, 101, 43);
    margin-bottom: 20px;
}

.service-icon {
    margin-bottom: 30px;
    color: #333;
}

.service-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #000;
}

.service-card p {
    color: rgb(51, 51, 51);
    line-height: 1.6;
    margin-bottom: 30px;
    flex: 1;
}

.service-btn {
    background: transparent;
    border: 2px solid #333;
    color: #333;
    padding: 12px 15px;
    border-radius: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.service-card:hover .service-btn {
    background: rgb(200, 101, 43);
    border-color: rgb(200, 101, 43);
    color: white;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #fff;
}

.section-title {
    font-size: 5rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 20px;
    color: #000;
}




.gallery-description {
    text-align: center;
    font-size: 1.1rem;
    color: #333333;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-image-container {
    position: relative;
    overflow: hidden;
    height: 250px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-image-container:hover {
    transform: scale(1.03);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    left: 5%;
    bottom: 5%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 13px;
    border-radius: 0;
    max-width: 80%;
}

.gallery-overlay h3 {
    font-size: 14px;
    font-weight: 600;
    color: white;
    margin: 0;
    line-height: 1.0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Gallery All Projects Button */
.gallery-all-projects {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 250px;
    background: rgb(200, 101, 43);
    transition: all 0.3s ease;
}

.gallery-all-projects:hover {
    transform: scale(1.03);
    background: rgb(200, 101, 43);
}

.gallery-all-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
}

.gallery-all-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.gallery-all-content h3 {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.gallery-all-icon {
    opacity: 0.8;
    transition: transform 0.3s ease;
}

.gallery-all-projects:hover .gallery-all-icon {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 60px 0 20px;
}

.footer-top {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    gap: 40px;
}

.footer-cta-content {
    flex: 1;
}

.footer-cta-title {
    font-size: 2.5rem !important;
    font-weight: 700;
    margin-bottom: 20px;
    color: white !important;
    text-transform: none !important;
}

.footer-cta-content p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.4;
}

.footer-cta-button {
    flex-shrink: 0;
}

.footer-btn {
    background: rgb(200, 101, 43);
    color: white;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    text-decoration: none;
    display: inline-block;
}

.footer-btn:hover {
    background: rgb(200, 101, 43);
    transform: translateY(-2px);
}

.footer-divider {
    max-width: 95%;
    margin: 0 auto;
    height: 1px;
    background: #333;
    margin-bottom: 60px;
}

.footer-content {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-left: 0;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
    line-height: 1.4;
}

.footer-contact a {
    color: rgb(200, 101, 43);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: #66b3ff;
}

.footer-business-info {
    margin-top: 30px;
}

.footer-business-info p {
    margin-bottom: 10px;
    color: #ccc;
    line-height: 1.4;
    font-size: 0.9rem;
}

.footer-navigation {
    display: flex;
    gap: 40px;
}

.footer-nav-column {
    flex: 1;
}

.footer-nav-column ul {
    list-style: none;
}

.footer-nav-column ul li {
    margin-bottom: 10px;
}

.footer-nav-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Privacy Policy Footer Link Styles */
.privacy-link-container {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-top: 5px;
}

.privacy-link {
    color: #ccc !important;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.privacy-link:hover {
    color: white !important;
}

/* Contact Page Styles */
.contact-hero {
    position: relative;
    height: 40vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: white;
    z-index: 20;
}

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

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

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: -1;
}

.contact-hero-content {
    width: 100%;
    text-align: center;
}

.contact-hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-form-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #333;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e1e5e9;
    background: #f8f9fa;
    color: #333;
    border-radius: 0;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgb(200, 101, 43);
    background: white;
    box-shadow: 0 0 0 3px rgba(200, 101, 43, 0.1);
}

.contact-submit-btn {
    background: rgb(200, 101, 43);
    color: white;
    border: none;
    padding: 15px 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    font-size: 1rem;
    width: 100%;
}

.contact-submit-btn:hover {
    background: rgb(180, 81, 23);
    transform: translateY(-2px);
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgb(200, 101, 43);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #333;
}

.contact-details p {
    color: #333333;
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: rgb(200, 101, 43);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: rgb(180, 81, 23);
}

.contact-business-info {
    background: white;
    padding: 30px;
    border-radius: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-business-info h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.business-details p {
    margin-bottom: 10px;
    color: #333333;
    font-size: 0.9rem;
}

.business-details strong {
    color: #333;
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
    .contact-hero {
        height: 25vh;
    }
    
    .contact-hero-title {
        font-size: 1.5rem;
    }

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

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

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form-wrapper h2 {
        font-size: 2rem;
    }
}

.newsletter-form {
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #333;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    background: white;
    color: #333;
    border-radius: 0;
    margin-bottom: 15px;
}

.form-group input:focus {
    outline: none;
    border-color: rgb(200, 101, 43);
}

.newsletter-btn {
    background: rgb(200, 101, 43);
    color: white;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    width: 100%;
}

.newsletter-btn:hover {
    background: rgb(200, 101, 43);
}

.form-note {
    font-size: 0.9rem;
    color: #999;
}

.footer-bottom {
    max-width: 95%;
    margin: 0 auto;
    padding: 20px 20px 0;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-social span {
    color: #ccc;
    font-weight: 500;
}

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

.footer-social a:hover {
    color: white;
}

.footer-copyright p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .logo-text {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .hamburger span {
        height: 2px;
    }
    
    .hamburger span:nth-child(2) {
        width: 20px;
        margin-left: 5px;
    }
    
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding-top: 50px;
        padding-left: 30px;
        transition: left 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 20px 0 0 0;
    }
    
    .nav-link {
        font-size: 1.2rem;
        color: #000 !important;
        font-weight: 700;
        text-align: left;
    }
    
    .hero-content {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        width: 100%;
        max-width: 95%;
        flex-direction: column;
        text-align: left;
        gap: 20px;
        padding: 0 15px 30px;
        margin: 0 auto;
        padding-top: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        text-align: left;
        max-width: none;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        width: 100%;
        justify-content: flex-start;
    }
    
    .cta-btn {
        padding: 12px 20px;
        font-size: 13px;
        flex: 1;
        text-align: center;
    }
    
    .hero-stats {
        justify-content: flex-start;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .hero-testimonial {
        padding: 15px;
        margin-bottom: 10px;
    }
    
    .hero-testimonial blockquote {
        font-size: calc(1rem - 3px);
        margin-bottom: 15px;
    }
    
    .testimonial-author {
        flex-direction: row;
        align-items: center;
        gap: 10px;
        margin-bottom: 0;
    }
    
    .author-avatar {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }
    
    .author-info {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 8px;
    }
    
    .author-rating {
        display: flex;
        align-items: center;
        gap: 5px;
    }
    
    .hero {
        position: relative;
        height: 100vh;
        padding-bottom: 20px;
        display: flex;
        align-items: flex-end;
    }
    
    .partners-slider {
        padding: 30px 0 40px;
    }
    
    .about {
        padding: 60px 0;
        margin-top: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .about-left {
        gap: 30px;
    }
    
    .about-header {
        gap: 15px;
    }
    
    .about-title {
        font-size: 3.5rem;
        line-height: 1.1;
        text-align: left;
    }
    
    .about-title::before {
        white-space: normal !important;
        word-wrap: break-word;
    }
    
    .about-text {
        gap: 20px;
    }
    
    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .about-text p:first-child {
        font-size: 1.1rem;
    }
    
    .about-btn {
        padding: 12px 25px;
        font-size: 14px;
        align-self: flex-start;
    }
    
    .about-image {
        height: 300px;
        width: 100%;
        object-fit: cover;
    }
    
    .about-stats {
        position: static;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
        gap: 15px;
    }
    
    .stat-box {
        min-width: auto;
        width: 100%;
        max-width: 280px;
        padding: 20px;
        gap: 15px;
    }
    
    .stat-box .stat-number {
        font-size: 2rem;
    }
    
    .stat-box .stat-label {
        font-size: 0.8rem;
    }
    
    .services-title {
        font-size: 3rem;
        text-align: center;
    }
    
    .services-title::before {
        white-space: normal !important;
        word-wrap: break-word;
    }
    
    .services-header {
        flex-direction: column;
        
    }
    
    .gallery {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 3rem;
        text-align: left;
    }
    
    .section-title::before {
        white-space: normal !important;
        word-wrap: break-word;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .gallery-item {
        margin: 0 auto;
        max-width: 100%;
        width: 100%;
    }
    
    .gallery-all-projects {
        height: 125px;
        width: 100% !important;
    }
    
    .services-navigation {
        align-self: center;
        width: 100%;
    }
    
    .services-btn-controls {
        flex-direction: row;
        gap: 15px;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }
    
    .services-carousel-container {
        padding: 20px 0;
        margin: 0px -15px 0 -15px;
        width: calc(100% + 30px);
    }
    
    .services-carousel {
        padding: 0 15px;
    }
    
    .services-carousel .service-card {
        flex: 0 0 calc(95% - 40px);
        min-width: 280px;
        max-width: 320px;
        padding: 20px;
        margin-right: 20px;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: left;
        padding: 0;
        align-items: flex-start;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
        padding: 0;
    }
    
    .footer-navigation {
        flex-direction: column;
        gap: 30px;
        margin-left: 0;
    }
    
    .footer-cta-title {
        font-size: 1.8rem !important;
    }
    
    .footer-nav-column {
        margin-bottom: 30px;
    }
    
    .footer-nav-column h4 {
        text-align: left;
        margin-bottom: 15px;
    }
    
    .footer-nav-column ul {
        text-align: left;
    }
    
    .footer-newsletter {
        text-align: left;
    }
    
    .footer-newsletter h3 {
        text-align: left;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: left;
        align-items: flex-start;
        padding: 0;
        padding-top: 10px;
    }
    
    .footer-social {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 20px;
    }
    
    .footer-social span {
        margin-bottom: 5px;
    }
}

/* Additional mobile styles for smaller screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
        text-align: left;
    }
    
    .hero-actions {
        gap: 8px;
    }
    
    .cta-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    
    .hero-testimonial {
        padding: 12px;
        margin-bottom: 8px;
    }
    
    .hero-testimonial blockquote {
        font-size: calc(0.9rem - 3px);
        margin-bottom: 12px;
    }
    
    .author-avatar {
        width: 30px;
        height: 30px;
    }
    
    .about-title {
        font-size: 2.8rem;
        text-align: left;
    }
    
    .about-title::before {
        white-space: normal !important;
        word-wrap: break-word;
    }
    
    .services-title {
        font-size: 2.5rem;
        text-align: left;
    }
    
    .services-title::before {
        white-space: normal !important;
        word-wrap: break-word;
    }
    
    .section-title {
        font-size: 2.5rem;
        text-align: left;
    }
    
    .section-title::before {
        white-space: normal !important;
        word-wrap: break-word;
    }
    
    .about-btn {
        width: auto;
        justify-content: flex-start;
        align-self: flex-start;
    }
    
    .stat-box {
        padding: 15px;
    }
    
    .stat-box .stat-number {
        font-size: 1.8rem;
    }
}

/* Page Photo Gallery Styles */
.page-photo-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

.photo-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.photo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.photo-item:hover img {
    transform: scale(1.05);
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 1px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.photo-item:hover .photo-overlay {
    transform: translateY(0);
}

/* Mobile responsive for photo gallery */
@media (max-width: 768px) {
    .page-photo-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .photo-item img {
        height: 180px;
    }
}

/* Gallery Category Pages Styles */
/* Category Filter - Desktop Sidebar, Mobile Dropdown */
.category-filter-container {
    display: none; /* Hidden on desktop, shown on mobile */
}

.category-content-full {
    width: 100%;
}

.category-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    
}

.category-sidebar {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.category-sidebar h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #c8652b;
    padding-bottom: 10px;
}

.category-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-nav li {
    margin-bottom: 15px;
}

.category-nav a {
    display: block;
    padding: 12px 15px;
    color: #333333;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-nav a:hover,
.category-nav a.active {
    background: #c8652b;
    color: white;
    transform: translateX(5px);
}

.category-content {
    min-height: 600px;
}

.category-header {
    margin-bottom: 40px;
}

.category-title {
    font-size: 2.5rem;
    color: black;
    margin-bottom: 15px;
}

.category-description {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.6;
    max-width: 800px;
}

/* Rental Page Styles */
.rental-header {
    text-align: center;
    margin-bottom: 60px;
}

.rental-title {
    font-size: 2.5rem !important;
    margin-bottom: 20px;
    color: #333 !important;
    text-transform: none !important;
}

.rental-description {
    font-size: 1.2rem;
    color: #333333;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.rental-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.rental-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rental-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.18);
}

.rental-card-image {
    height: 250px;
    overflow: hidden;
}

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

.rental-card-content {
    padding: 30px;
}

.rental-card-title {
    color: #c8652b !important;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: none !important;
}

.rental-card-subtitle {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.rental-card-text {
    color: #333333;
    line-height: 1.6;
    margin-bottom: 0;
}

.rental-benefits {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
}

.rental-benefits-title {
    color: #333 !important;
    font-size: 1.8rem !important;
    margin-bottom: 30px;
    text-transform: none !important;
}

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

.rental-benefit-icon {
    background: #c8652b;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.rental-benefit-title {
    color: #333;
    margin-bottom: 10px;
}

.rental-benefit-text {
    color: #333333;
    margin: 0;
}

/* Security Doors Page Styles */
.security-doors-section {
    margin-bottom: 60px;
}

.security-doors-header {
    text-align: center;
    margin-bottom: 40px;
}

.security-doors-title-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.security-doors-main-title {
    font-size: 2.5rem !important;
    margin: 0;
    color: #333 !important;
    text-transform: none !important;
}

.security-doors-cert-img {
    max-width: 60px;
    height: auto;
    flex-shrink: 0;
}

.security-doors-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.security-doors-text {
    font-size: 1.1rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.security-doors-text-small {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
}

.security-doors-text-last {
    font-size: 1rem;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 0;
}

.security-doors-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* Contact Form Styles */
.form-message-hidden {
    display: none;
}

.btn-loader {
    display: none;
}

.btn-loader-hidden {
    display: none !important;
}

/* Mobile responsive for custom pages */
@media (max-width: 768px) {
    .rental-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .rental-benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 20px;
    }
    
    .security-doors-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .security-doors-title-container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .security-doors-main-title {
        font-size: 2rem !important;
    }
    
    .security-doors-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Category pages mobile responsive */
@media (max-width: 768px) {
    /* Show dropdown on mobile */
    .category-filter-container {
        display: block;
        margin: 20px 0;
        text-align: center;
    }
    
    .filter-label {
        display: block;
        font-size: 1rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 10px;
    }
    
    .category-dropdown {
        appearance: none;
        background: white;
        border: 2px solid #ddd;
        border-radius: 8px;
        padding: 10px 35px 10px 15px;
        font-size: 0.9rem;
        font-family: 'Montserrat', sans-serif;
        font-weight: 500;
        color: #333;
        width: 100%;
        max-width: 100%;
        min-width: auto;
        cursor: pointer;
        transition: all 0.3s ease;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 15px center;
        background-size: 16px;
    }
    
    .category-dropdown:hover {
        border-color: #c8652b;
        box-shadow: 0 2px 8px rgba(200, 101, 43, 0.2);
    }
    
    .category-dropdown:focus {
        outline: none;
        border-color: #c8652b;
        box-shadow: 0 0 0 3px rgba(200, 101, 43, 0.1);
    }

    /* Hide sidebar on mobile */
    .category-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .category-sidebar {
        display: none;
    }
}