/* Global Styles */
:root {
    --primary-color: #1C3344;
    --secondary-color: #B76E79;
    --accent-color: #D4B78F;
    --light-bg: #F7F3EE;
    --dark-text: #1C3344;
    --light-text: #F7F3EE;
    --border-color: rgba(183,110,121,0.15);
}






body {
    font-family: 'Cormorant Garamond', 'Times New Roman', serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    line-height: 1.8;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Navigation */
.navbar {
    background-color: rgba(28,51,68,0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
    background-color: rgba(28,51,68,0.98);
}

.navbar-dark .navbar-nav .nav-link {
    color: var(--light-text) !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-dark .navbar-nav .nav-link:hover::after {
    width: 30px;
}

/* Banner Slider */
.banner-swiper {
    margin-top: 0;
}

.banner-swiper img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--light-text);
    z-index: 1;
    width: 80%;
}

.banner-content h1 {
    font-size: 4rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.banner-content p {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.swiper-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        rgba(28,51,68,0.7),
        rgba(28,51,68,0.4)
    );
}

/* Introduction Section */
.intro {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.intro h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 200;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.intro h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 1px;
    background-color: var(--secondary-color);
}

.intro .lead {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--dark-text);
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background-color: #fff;
}

.service-card {
    background: #fff;
    border-radius: 0;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.5s ease;
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), transparent);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 0;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-15px);
    border-color: var(--secondary-color);
}

.service-icon {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.service-icon img {
    width: 140px;
    height: 140px;
    transition: all 0.5s ease;
}

.service-card:hover .service-icon img {
    transform: scale(1.1);
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--dark-text);
    opacity: 0.8;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.btn-outline-elegant {
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    padding: 0.8rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    background: transparent;
}

.btn-outline-elegant:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
}

/* Advantages Section */
.advantages {
    padding: 6rem 0;
    background-color: var(--light-bg);
}

.advantage-card {
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
}

.advantage-card i {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.advantage-card h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 1.5rem 0;
    font-weight: 300;
}

.advantage-card p {
    color: var(--dark-text);
    opacity: 0.8;
}

.advantage-card:hover i {
    transform: translateY(-10px);
    color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--primary-color);
    color: var(--light-text);
    padding: 5rem 0 3rem;
}

footer h5 {
    color: #fff;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

footer p, footer li {
    opacity: 0.8;
    line-height: 1.8;
}

footer a {
    color: var(--light-text);
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
}

footer a:hover {
    color: var(--secondary-color);
    opacity: 1;
    text-decoration: none;
}

footer i {
    color: var(--secondary-color);
    margin-right: 1rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Custom Utilities */
.text-elegant {
    color: var(--secondary-color);
}

.bg-gradient-elegant {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }
    
    .banner-content p {
        font-size: 1.1rem;
    }
    
    .intro h2 {
        font-size: 2.2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
} 

/* Page Header */
.page-header {
    position: relative;
    height: 400px;
    background: url('../images/header-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    margin-top: 76px;
}

.page-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(28,51,68,0.8), rgba(28,51,68,0.6));
}

.page-header h1 {
    color: var(--light-text);
    font-size: 3.5rem;
    font-weight: 200;
    margin-bottom: 1rem;
    position: relative;
}

.page-header p {
    color: var(--light-text);
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    position: relative;
}

/* Company Introduction */
.company-intro h2 {
    color: var(--primary-color);
    font-size: 2.8rem;
    font-weight: 200;
    margin-bottom: 1.5rem;
}

.divider {
    width: 60px;
    height: 1px;
    background-color: var(--secondary-color);
    margin-bottom: 2rem;
}

/* Timeline */
.timeline-wrapper {
    position: relative;
    padding: 2rem 0;
}

.timeline-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    width: 50%;
    padding-right: 2rem;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-right: 0;
    padding-left: 2rem;
}

.timeline-content {
    background: #fff;
    padding: 2rem;
    border: 1px solid var(--border-color);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-content::before {
    right: auto;
    left: -7px;
}

.timeline-content h4 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

/* Core Values */
.value-card {
    text-align: center;
    padding: 3rem 2rem;
    transition: all 0.4s ease;
}

.value-card i {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.value-card h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.value-card:hover i {
    transform: translateY(-10px);
    color: var(--accent-color);
}

/* Team Section */
.team-member {
    text-align: center;
    margin-bottom: 3rem;
}

.team-member img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
    border: 1px solid var(--border-color);
    transition: all 0.4s ease;
}

.team-member:hover img {
    transform: scale(1.05);
    border-color: var(--secondary-color);
}

.team-member h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.team-member .position {
    color: var(--secondary-color);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.team-member .bio {
    color: var(--dark-text);
    opacity: 0.8;
}

/* Office Section */
.office-swiper {
    padding-bottom: 3rem;
}

.office-swiper .swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 4px;
}

/* Services Overview */
.service-stat {
    padding: 2rem;
    transition: all 0.4s ease;
}

.service-stat i {
    color: var(--secondary-color);
    transition: all 0.4s ease;
}

.service-stat:hover i {
    transform: translateY(-10px);
    color: var(--accent-color);
}

.service-stat h3 {
    color: var(--primary-color);
    font-size: 1.4rem;
    font-weight: 300;
}

.service-stat .counter {
    font-size: 2.5rem;
    font-weight: 200;
    color: var(--primary-color);
    margin: 1rem 0;
}

/* Service Process */
.process-timeline {
    position: relative;
    padding: 2rem 0;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--light-text);
    font-size: 1.5rem;
    margin: 0 auto 1rem;
    position: relative;
}

.process-step h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

/* Case Studies */
.case-study-card {
    background: var(--light-text);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.case-study-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.case-study-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.case-study-content {
    padding: 2rem;
}

.case-study-content h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.case-study-content p {
    color: var(--dark-text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* News Categories */
.news-categories .nav-pills .nav-link {
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    margin: 0 0.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.news-categories .nav-pills .nav-link.active,
.news-categories .nav-pills .nav-link:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}

/* Search Bar */
.search-bar .form-control {
    border: 1px solid var(--border-color);
    padding: 1rem;
    font-size: 1rem;
    border-radius: 4px 0 0 4px;
}

.search-bar .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.5rem 1.5rem;
}

/* News Card */
.news-card {
    background: var(--light-text);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.news-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.news-content {
    padding: 1.5rem;
}

.news-meta {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.news-meta .date {
    color: var(--secondary-color);
    margin-right: 1rem;
}

.news-meta .category {
    color: var(--primary-color);
}

.news-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.news-card p {
    color: var(--dark-text);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.read-more {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.read-more:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.read-more:hover i {
    transform: translateX(5px);
}

/* Pagination */
.pagination .page-link {
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    margin: 0 0.2rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--light-text);
}

.pagination .page-link:hover {
    background-color: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
} 

/* Article Content */
.article-content {
    background: var(--light-text);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.article-title {
    color: var(--primary-color);
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.article-meta {
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.article-meta span {
    margin-right: 1.5rem;
}

.article-meta i {
    margin-right: 0.5rem;
}

.article-image {
    margin-bottom: 2rem;
    border-radius: 4px;
}

.article-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.article-text h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 300;
    margin: 2rem 0 1rem;
}

.article-quote {
    border-left: 4px solid var(--secondary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    background: var(--light-bg);
    font-style: italic;
}

.quote-author {
    color: var(--primary-color);
    font-weight: 500;
    margin-top: 1rem;
}

/* Article Footer */
.article-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.tags a {
    display: inline-block;
    padding: 0.3rem 1rem;
    margin: 0.3rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tags a:hover {
    background: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}

.share-buttons {
    margin-top: 1.5rem;
}

.share-buttons span {
    margin-right: 1rem;
    color: var(--primary-color);
}

.share-buttons .btn {
    margin: 0 0.3rem;
}

/* Article Navigation */
.article-navigation {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.prev-article,
.next-article {
    display: block;
    color: var(--dark-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.prev-article span,
.next-article span {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.prev-article h4,
.next-article h4 {
    color: var(--primary-color);
    margin: 0;
    font-size: 1.2rem;
}

.prev-article:hover,
.next-article:hover {
    text-decoration: none;
    transform: translateX(-5px);
}

.next-article:hover {
    transform: translateX(5px);
}

/* Sidebar Widgets */
.sidebar-widget {
    background: var(--light-text);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    margin-bottom: 1rem;
}

.category-list a {
    color: var(--dark-text);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--secondary-color);
}

.recent-post {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.recent-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 1rem;
}

.recent-post-content h4 {
    font-size: 1.1rem;
    margin: 0 0 0.5rem;
}

.recent-post-content h4 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.recent-post-content h4 a:hover {
    color: var(--secondary-color);
}

.recent-post-content .date {
    font-size: 0.9rem;
    color: var(--secondary-color);
}

.tag-cloud a {
    display: inline-block;
    padding: 0.3rem 1rem;
    margin: 0.3rem;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.tag-cloud a:hover {
    background: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}

/* Contact Information */
.contact-info {
    background: var(--light-text);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
}

.contact-info h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-right: 1rem;
    margin-top: 0.5rem;
}

.info-content h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--dark-text);
    opacity: 0.8;
    margin-bottom: 0;
}

.social-links h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--primary-color);
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--light-text);
    border-color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: var(--light-text);
    padding: 2rem;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form h2 {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.form-control {
    border: 1px solid var(--border-color);
    padding: 0.8rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--secondary-color);
    box-shadow: none;
}

.form-control::placeholder {
    color: var(--dark-text);
    opacity: 0.5;
}

textarea.form-control {
    resize: none;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 0.8rem 2rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Map Section */
.map-container {
    position: relative;
    overflow: hidden;
}

.map-container iframe {
    filter: grayscale(1);
    transition: all 0.3s ease;
}

.map-container iframe:hover {
    filter: grayscale(0);
} 