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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
}

/* Navigation */
.navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo-image {
    max-width: 250px;
    height: auto;
}

.navigation-wrap {
    display: flex;
    align-items: center;
}

.navigation-items {
    display: flex;
    gap: 2.5rem;
}

.navigation-item {
    color: #042038;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.navigation-item:hover {
    color: #2673b1;
}

.menu-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-icon {
    width: 24px;
    height: 24px;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 32, 56, 0.5);
    z-index: 999;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100%;
    background: white;
    transition: right 0.3s ease;
    padding: 2rem;
    box-shadow: -2px 0 10px rgba(4, 32, 56, 0.2);
}

.mobile-menu.active .mobile-menu-content {
    right: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #042038;
}

.mobile-navigation-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 3rem;
}

.mobile-navigation-item {
    color: #042038;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    border-bottom: 1px solid #5fbbea;
    transition: color 0.3s;
}

.mobile-navigation-item:hover {
    color: #2673b1;
}

.primary-button {
    background: #2673b1;
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.primary-button:hover {
    background: #042038;
    transform: translateY(-2px);
}

.cc-contact-us {
    position: relative;
}

/* Page Header */
.page-header {
    background: #000;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@media (max-width: 767px) {
    .page-header h1 {
        font-size: 2rem;
    }
}

/* Slider */
.section {
    padding: 3rem 0;
}

.cc-store-home-wrap {
    padding: 0;
}

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

.slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
}

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

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

.product-slide.active {
    opacity: 1;
}

.heading-container {
    background: rgba(0,0,0,0.5);
    padding: 2rem 4rem;
    border-radius: 8px;
}

.slide-title {
    color: white;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.slider-arrow:hover {
    background: rgba(255,255,255,1);
}

.slider-arrow-left {
    left: 20px;
}

.slider-arrow-right {
    right: 20px;
}

.slider-nav {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

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

.slider-dot.active {
    background: white;
}

/* Motto */
.motto-wrap {
    text-align: center;
    padding: 4rem 2rem;
}

.label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    color: #2673b1;
    margin-bottom: 1rem;
}

.cc-light {
    color: #2673b1;
}

.heading-jumbo-small {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    color: #042038;
}

.divider {
    height: 1px;
    background: #e0e0e0;
    margin: 3rem 0;
}

/* About Sections */
.home-content-wrap {
    padding: 2rem 0;
}

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

.cc-about-2 {
    grid-template-columns: 1fr 1fr;
}

.cc-about-2 > div:first-child {
    order: 2;
}

.cc-about-2 > img {
    order: 1;
}

.about-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    max-height: 400px;
}

.home-section-wrap {
    margin-bottom: 2rem;
}

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

.section-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #042038;
}

.paragraph-light {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #666;
    margin: 1rem 0;
}

/* Services */
.services-container {
    padding: 4rem 2rem;
    background: #f8f9fa;
    margin-top: 3rem;
}

.section-heading-wrap {
    text-align: center;
    margin-bottom: 3rem;
}

.section-heading-wrap h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #042038;
}

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

.our-services-grid > div {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.our-services-grid > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.1);
}

.service-icon {
    margin-bottom: 1.5rem;
    color: #2673b1;
    font-size: 3.5rem;
}

.paragraph-bigger {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #042038;
}

/* Footer */
footer {
    background: #042038;
    color: white;
    padding: 2rem 0;
}

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

.paragraph-tiny {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
}

/* Responsive */
@media (max-width: 991px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cc-about-2 > div:first-child {
        order: 1;
    }
    
    .cc-about-2 > img {
        order: 2;
    }
    
    .navigation {
        padding: 1rem 1.5rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .navigation-items {
        display: none;
    }
    
    .menu-button {
        display: block;
    }
    
    .cc-contact-us {
        display: none;
    }
    
    .slider {
        height: 350px;
    }
    
    .heading-jumbo-small {
        font-size: 1.5rem;
    }
    
    .section-heading {
        font-size: 2rem;
    }
    
    .our-services-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-image {
        max-width: 180px;
    }
}
