:root {
    --primary-color: #112e57;
    --accent-color: #ca122a;
    --text-color: #333333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a1a1a;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .premium-title {
    font-family: var(--font-heading);
    color: var(--primary-color);
}

.text-primary-brand {
    color: var(--primary-color) !important;
}

.text-accent {
    color: var(--accent-color) !important;
}

.bg-primary-brand {
    background-color: var(--primary-color) !important;
}

.bg-accent {
    background-color: var(--accent-color) !important;
}

.btn-premium {
    background-color: var(--primary-color);
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.btn-premium:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-accent {
    background-color: var(--accent-color);
    color: #fff;
    border: 2px solid var(--accent-color);
    padding: 12px 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.btn-accent:hover {
    background-color: transparent;
    color: var(--accent-color);
}

.premium-nav {
    background-color: rgba(255, 255, 255, 0.98) !important;
    transition: all 0.4s ease;
    padding: 15px 0;
}

.premium-nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
}

.logo-svg {
    width: 50px;
    height: 50px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover .logo-svg {
    transform: rotate(5deg);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-heading);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.brand-sub {
    font-size: 0.7rem;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--primary-color) !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 10px;
    position: relative;
    transition: color 0.3s ease;
}

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

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

.hero-section {
    height: 100vh;
    min-height: 600px;
    background: linear-gradient(rgba(17, 46, 87, 0.7), rgba(17, 46, 87, 0.7)), url('../images/hero.webp') no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    position: relative;
    color: #fff;
    margin-top: 0;
    padding-top: 80px; /* Offset for fixed nav */
}

.hero-content {
    animation: fadeInDown 1s ease forwards;
}

.hero-subtitle {
    font-family: var(--font-heading);
    color: var(--accent-color);
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Section Common */
.section-padding {
    padding: 60px 0;
}

.section-title {
    position: relative;
    margin-bottom: 40px;
    text-align: center;
}

.section-title h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-title .divider {
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
    margin: 0 auto;
}

/* About Section */
.about-image-wrapper {
    position: relative;
    padding: 20px;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 80%;
    height: 80%;
    border: 3px solid var(--accent-color);
    z-index: 0;
}

.about-image {
    position: relative;
    z-index: 1;
    width: 100%;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transform: translate(20px, 20px);
}

.feature-box {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 2rem;
    color: var(--accent-color);
    margin-right: 20px;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Categories Section */
.bg-light-premium {
    background-color: #f4f6f9;
}

.category-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.category-img-wrap {
    height: 250px;
    overflow: hidden;
}

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

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

.category-content {
    padding: 30px;
    text-align: center;
    border-bottom: 3px solid transparent;
    transition: border-color 0.4s ease;
}

.category-card:hover .category-content {
    border-bottom-color: var(--accent-color);
}

.category-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Contact Section */
.contact-info-box {
    background-color: var(--primary-color);
    color: #fff;
    padding: 40px;
    height: 100%;
}

.contact-info-box h3 {
    color: #fff;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 20px;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.form-control {
    border-radius: 0;
    padding: 15px;
    border: 1px solid #ddd;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: none;
}

/* Footer */
.footer-area {
    background-color: var(--dark-bg);
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.footer-links a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .about-image-wrapper {
        margin-bottom: 40px;
    }
    
    .contact-info-box {
        margin-bottom: 30px;
    }
}

/* Custom Swiper Controls & Pagination */
.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    font-size: 0.9rem;
}

.slider-btn * {
    pointer-events: none;
}

.slider-btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

.slider-btn-outline:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.slider-btn-fill {
    background: var(--primary-color);
    color: #ffffff;
    border: 2px solid var(--primary-color);
}

.slider-btn-fill:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: #ffffff;
    transform: translateY(-2px);
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--accent-color) !important;
    width: 24px;
    border-radius: 4px;
}

.contact-info li i {
    color: var(--accent-color) !important;
}