/* ============================================
   SKYCAR ELEVATORS - Main Stylesheet
   Colors from logo: Red #CC0000, Blue #1B3D6F
   Font: Poppins
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #333;
    line-height: 1.7;
    overflow-x: hidden;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

/* === TOP BAR === */
.top-bar {
    background: #1B3D6F;
    color: #fff;
    padding: 8px 0;
    font-size: 13px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.top-bar a {
    color: #fff;
}

.top-bar a:hover {
    color: #f0c040;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-bar-left i {
    margin-right: 6px;
    color: #f0c040;
}

.top-bar-right .btn-quote {
    background: #CC0000;
    color: #fff;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.top-bar-right .btn-quote:hover {
    background: #a30000;
    transform: translateY(-1px);
}

/* === HEADER / NAVBAR === */
.main-header {
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
}

.main-nav > ul {
    display: flex;
    align-items: center;
    gap: 0;
}

.main-nav > ul > li {
    position: relative;
}

.main-nav > ul > li > a {
    display: block;
    padding: 15px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1B3D6F;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: #CC0000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.main-nav > ul > li:hover > a::after,
.main-nav > ul > li.active > a::after {
    transform: scaleX(1);
}

.main-nav > ul > li:hover > a,
.main-nav > ul > li.active > a {
    color: #CC0000;
}

/* Dropdown arrow icon */
.main-nav .dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav .dropdown > a .fa-chevron-down {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.main-nav .dropdown:hover > a .fa-chevron-down {
    transform: rotate(180deg);
}

.main-nav .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-top: 3px solid #CC0000;
    border-radius: 0 0 8px 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.main-nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-nav .dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: #333;
    border-bottom: 1px solid #f5f5f5;
    font-weight: 400;
    transition: all 0.3s ease;
}

.main-nav .dropdown-menu li:last-child a {
    border-bottom: none;
}

.main-nav .dropdown-menu li a:hover {
    background: #f8f9ff;
    color: #CC0000;
    padding-left: 25px;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #1B3D6F;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.menu-toggle:hover {
    background: #f0f0f0;
}

/* Mobile menu overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile close button */
.mobile-nav-close {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    color: #1B3D6F;
    cursor: pointer;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    position: absolute;
    top: 15px;
    right: 15px;
}

.mobile-nav-close:hover {
    background: #f0f0f0;
    color: #CC0000;
}

/* === HERO SECTION === */
.hero-section {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1B3D6F 0%, #0d2240 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/elevatormanufacturer.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    padding: 60px 0;
}

.hero-content .subtitle {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #f0c040;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #CC0000;
    display: block;
}

.hero-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: #CC0000;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid #CC0000;
}

.btn-primary:hover {
    background: #a30000;
    border-color: #a30000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204,0,0,0.3);
    color: #fff;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #fff;
    color: #1B3D6F;
    transform: translateY(-2px);
}

/* Floating shapes for hero */
.hero-section .shape-1 {
    position: absolute;
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(255,255,255,0.08);
    border-radius: 50%;
    z-index: 1;
}

.hero-section .shape-2 {
    position: absolute;
    bottom: -5%;
    right: 15%;
    width: 200px;
    height: 200px;
    background: rgba(204,0,0,0.1);
    border-radius: 50%;
    z-index: 1;
}

/* === SECTION COMMON === */
.section {
    padding: 80px 0;
}

.section-gray {
    background: #f8f9fa;
}

.section-dark {
    background: #1B3D6F;
    color: #fff;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title .overline {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #CC0000;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1B3D6F;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-dark .section-title h2 {
    color: #fff;
}

.section-title p {
    font-size: 16px;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
}

.section-dark .section-title p {
    color: rgba(255,255,255,0.7);
}

.section-title .title-line {
    display: block;
    width: 60px;
    height: 3px;
    background: #CC0000;
    margin: 15px auto 0;
    border-radius: 2px;
}

/* === ABOUT SECTION (Home) === */
.about-home {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.about-home-img {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.about-home-img img {
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.about-home-img::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    border-top: 4px solid #CC0000;
    border-left: 4px solid #CC0000;
    border-radius: 12px 0 0 0;
    z-index: -1;
}

.about-home-text {
    flex: 1;
    min-width: 300px;
}

.about-home-text .overline {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #CC0000;
    margin-bottom: 10px;
    display: block;
}

.about-home-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1B3D6F;
    margin-bottom: 20px;
    line-height: 1.3;
}

.about-home-text p {
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
}

/* === SPECIALIZATION CARDS === */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.spec-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.spec-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #CC0000, #1B3D6F);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.spec-card:hover::before {
    transform: scaleX(1);
}

.spec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.spec-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #1B3D6F, #2a5ba0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}

.spec-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1B3D6F;
    margin-bottom: 12px;
}

.spec-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* === PRODUCTS GRID === */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.product-card-img {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.product-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-img .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(27,61,111,0.8) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-card-img .overlay {
    opacity: 1;
}

.product-card-body {
    padding: 25px;
    text-align: center;
}

.product-card-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1B3D6F;
    margin-bottom: 10px;
}

.product-card-body p {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
}

.product-card-body .btn-link {
    color: #CC0000;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card-body .btn-link:hover {
    letter-spacing: 2px;
}

/* === SERVICES === */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.service-card .service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #CC0000, #ff3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #fff;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #fff;
}

.service-card p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
}

/* === STATS BAR === */
.stats-bar {
    background: linear-gradient(135deg, #CC0000 0%, #a30000 100%);
    padding: 50px 0;
    color: #fff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* === TESTIMONIALS === */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    border-radius: 12px;
    padding: 35px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: rgba(204,0,0,0.1);
    line-height: 1;
}

.testimonial-card p {
    font-size: 15px;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1B3D6F;
}

.testimonial-author span {
    font-size: 13px;
    color: #CC0000;
}

/* === CTA SECTION === */
.cta-section {
    background: linear-gradient(135deg, #1B3D6F 0%, #0d2240 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    border: 2px solid rgba(255,255,255,0.05);
    border-radius: 50%;
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.cta-section p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 30px;
    position: relative;
}

.cta-section .btn-primary {
    position: relative;
}

/* === FOOTER === */
.footer {
    background: #0d1b2e;
    color: #ccc;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: #CC0000;
    border-radius: 2px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #999;
}

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

.footer-col ul li a {
    font-size: 14px;
    color: #999;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-col ul li a::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #CC0000;
    font-size: 12px;
}

.footer-col ul li a:hover {
    color: #fff;
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    align-items: flex-start;
}

.footer-contact-item .fci-icon {
    width: 36px;
    height: 36px;
    background: rgba(204,0,0,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #CC0000;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact-item p {
    font-size: 14px;
    color: #999;
}

.footer-contact-item p strong {
    color: #ccc;
    display: block;
    font-weight: 500;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    font-size: 13px;
    color: #666;
    margin-top: 20px;
}

.footer-bottom a {
    color: #CC0000;
}

/* === PAGE BANNER (Inner Pages) === */
.page-banner {
    background: linear-gradient(135deg, #1B3D6F 0%, #0d2240 100%);
    padding: 80px 0 60px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/elevatormanufacturer.jpg') center/cover no-repeat;
    opacity: 0.08;
}

.page-banner h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
}

.page-banner .breadcrumb {
    position: relative;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.page-banner .breadcrumb a {
    color: #f0c040;
}

.page-banner .breadcrumb a:hover {
    color: #fff;
}

/* === ABOUT PAGE === */
.about-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.about-tab-btn {
    padding: 10px 25px;
    background: #f0f0f0;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-tab-btn:hover,
.about-tab-btn.active {
    background: #CC0000;
    color: #fff;
}

.about-content-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.about-content-block .text-col {
    flex: 2;
    min-width: 300px;
}

.about-content-block .img-col {
    flex: 1;
    min-width: 280px;
}

.about-content-block .img-col img {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1B3D6F;
    margin-bottom: 15px;
}

.about-content-block p {
    margin-bottom: 15px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.about-content-block ul {
    margin-top: 10px;
}

.about-content-block ul li {
    padding: 8px 0;
    color: #555;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-content-block ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #CC0000;
    font-size: 13px;
}

/* === CONTACT PAGE === */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: flex-start;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #f8f9fa;
    border-radius: 12px;
    align-items: flex-start;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.contact-info-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.contact-info-card .cic-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #CC0000, #ff3333);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-card h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1B3D6F;
    margin-bottom: 5px;
}

.contact-info-card p {
    font-size: 14px;
    color: #666;
}

.contact-form {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #f0f0f0;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1B3D6F;
    margin-bottom: 25px;
}

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
    background: #f9f9f9;
}

.form-control:focus {
    outline: none;
    border-color: #CC0000;
    box-shadow: 0 0 0 3px rgba(204,0,0,0.1);
    background: #fff;
}

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

.btn-submit {
    display: inline-block;
    background: #CC0000;
    color: #fff;
    padding: 14px 40px;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #a30000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(204,0,0,0.3);
}

/* === CLIENTS PAGE === */
.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.client-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #CC0000;
}

.client-card .client-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: linear-gradient(135deg, #1B3D6F, #2a5ba0);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
}

.client-card h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1B3D6F;
}

/* === PRODUCT DETAIL PAGE === */
.product-detail {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product-detail-img {
    flex: 1;
    min-width: 300px;
}

.product-detail-img img {
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    width: 100%;
}

.product-detail-text {
    flex: 1.2;
    min-width: 300px;
}

.product-detail-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1B3D6F;
    margin-bottom: 20px;
}

.product-detail-text p {
    color: #555;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.8;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.feature-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-card h4 {
    font-size: 17px;
    font-weight: 600;
    color: #1B3D6F;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: #666;
}

/* Why Choose Us section */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #CC0000;
    transition: all 0.3s ease;
}

.why-item:hover {
    background: #fff;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.why-item .why-icon {
    width: 45px;
    height: 45px;
    background: #1B3D6F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.why-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: #1B3D6F;
    margin-bottom: 5px;
}

.why-item p {
    font-size: 13px;
    color: #666;
}

/* === CATALOGUE PAGE === */
.catalogue-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.catalogue-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
}

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

.catalogue-card-img {
    height: 220px;
    overflow: hidden;
}

.catalogue-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.catalogue-card-body {
    padding: 25px;
}

.catalogue-card-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1B3D6F;
    margin-bottom: 10px;
}

.catalogue-card-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .main-nav > ul {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        box-shadow: -5px 0 30px rgba(0,0,0,0.15);
        padding: 70px 0 30px;
        z-index: 999;
        overflow-y: auto;
        transition: right 0.35s ease;
        display: flex;
    }

    .main-nav > ul.active {
        right: 0;
    }

    .main-nav > ul > li > a {
        padding: 14px 25px;
        border-bottom: 1px solid #f0f0f0;
        font-size: 14px;
    }

    .main-nav > ul > li > a::after {
        display: none;
    }

    .main-nav .dropdown-menu {
        position: static;
        box-shadow: none;
        border-top: none;
        border-radius: 0;
        padding-left: 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        background: #f8f9fa;
    }

    .main-nav .dropdown.open .dropdown-menu {
        display: block;
    }

    .main-nav .dropdown-menu li a {
        padding: 10px 25px;
        font-size: 13px;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav-close {
        display: flex;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-section {
        min-height: 450px;
    }

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

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

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

@media (max-width: 768px) {
    .top-bar .container {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .top-bar-left {
        flex-direction: column;
        gap: 5px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .page-banner h1 {
        font-size: 32px;
    }

    .about-home {
        flex-direction: column;
    }

    .product-detail {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}
