* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bluebell-main: #1a3c5e;
    --bluebell-light: #4a7ab5;
    --bluebell-accent: #f4f7f9;
    --gold-subtle: #d4af37;
    --text-color: #1a1a1a;
    --white: #ffffff;
    --font-main: 'Inter', sans-serif;
    --font-head: 'Outfit', sans-serif;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    padding-top: 0;
    /* Clear any unintended padding */
}

body::after {
    content: 'EXCELLENCE IN DESIGN / PRECISION IN CRAFT';
    position: fixed;
    right: -150px;
    top: 50%;
    transform: rotate(90deg);
    font-size: 11px;
    letter-spacing: 7px;
    color: rgba(26, 60, 94, 0.65);
    z-index: 999;
    font-weight: 800;
    pointer-events: none;
    text-transform: uppercase;
    font-family: var(--font-head);
}

/* Top Bar */
.top-bar {
    background-color: var(--bluebell-main);
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    font-size: 13px;
    font-family: var(--font-head);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    z-index: 1100;
}

/* Navigation Overhaul */
.main-nav {
    background: transparent;
    padding: 20px 0;
    position: relative;
    /* Changed from absolute to prevent covering top-bar */
    width: 100%;
    box-shadow: none;
    z-index: 1000;
}

.nav-container {
    padding: 0 8%;
    max-width: 100%;
}

.nav-links li a {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bluebell-main);
}

/* --- ARCHITECTURAL HERO --- */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 50%;
    right: 0;
    width: 65%;
    /* Slightly larger */
    height: 85%;
    z-index: 1;
    transform: translateY(-50%);
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
    overflow: hidden;
    /* Ensure image stays within clip */
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: heroZoomPan 30s infinite alternate ease-in-out;
}

@keyframes heroZoomPan {
    0% {
        transform: scale(1.0) translate(0, 0);
    }

    100% {
        transform: scale(1.08) translate(-1%, -1%);
    }
}

/* 移除了hover跳动效果，保持平滑的动画 */

.hero-content {
    position: relative;
    z-index: 10;
    width: 40%;
    margin-left: 5%;
    background: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-left: 8px solid var(--bluebell-main);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
    font-family: var(--font-head);
    font-size: clamp(40px, 5vw, 70px);
    line-height: 1;
    font-weight: 700;
    color: var(--bluebell-main);
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero-content p {
    font-size: 18px;
    color: var(--bluebell-light);
    max-width: 400px;
    margin-bottom: 40px;
}

/* Architectural Buttons */
.btn {
    display: inline-block;
    background-color: var(--bluebell-main);
    color: var(--white);
    padding: 18px 50px;
    text-decoration: none;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid var(--bluebell-main);
}

.btn:hover {
    background-color: transparent;
    color: var(--bluebell-main);
    transform: translateY(-5px);
}

/* --- MAGAZINE STYLE WELCOME --- */
.welcome {
    padding: 120px 0;
    background: #fff;
    text-align: center;
}

.welcome .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.welcome h2 {
    font-size: clamp(32px, 5vw, 60px);
    line-height: 1.1;
    margin-bottom: 30px;
}

.welcome p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

/* Scroll Animation Utilities */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-item p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

/* Consolidated duplicate navigation rules */
#logo-img {
    height: 70px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.nav-links li a:hover {
    color: var(--bluebell-light);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

#logo-img {
    height: 80px;
    /* Adjusted for the generated logo aspect ratio */
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

#logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-links li {
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: #333;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 10px;
    letter-spacing: 0.3px;
    padding: 8px 4px;
    white-space: nowrap;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: var(--navy);
}

.nav-links li a i {
    font-size: 8px;
    margin-left: 2px;
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 180px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 4px;
    z-index: 1000;
}

.nav-links li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    font-size: 11px;
    font-weight: 400;
}

/* Nav CTA Button */
.nav-cta {
    background-color: var(--bluebell-main) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: 0;
    font-weight: 700 !important;
    margin-left: 15px;
    transition: all 0.3s;
    font-size: 11px !important;
    letter-spacing: 1px;
}

.nav-cta:hover {
    background-color: var(--bluebell-light) !important;
}

.dropdown-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--navy);
}

.nav-icon {
    font-size: 16px;
}

/* Gallery Section */
/* Cleaned up duplicate gallery styles */

/* Subscribe Section */
.subscribe {
    background-color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

.subscribe h2 {
    font-family: var(--font-head);
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--navy);
}

.subscribe-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-form input {
    flex: 1;
    padding: 15px;
    border: 1px solid #ddd;
    border-right: none;
    font-size: 16px;
}

.subscribe-form button {
    background-color: var(--bluebell-main);
    color: var(--white);
    border: none;
    padding: 0 30px;
    font-family: var(--font-head);
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-form button:hover {
    background-color: var(--bluebell-light);
}

/* Reviews Section (1:1 from Image) */
.reviews {
    padding: 60px 5% 0;
    background-color: var(--white);
    position: relative;
    z-index: 10;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
}

.review-card {
    background: var(--white);
    color: var(--text-color);
    padding: 40px 30px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-user-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    font-family: var(--font-head);
}

.review-user-img.gray {
    background: #bbb;
}

.review-user-img.red {
    background: #d32f2f;
}

.review-user-img.green {
    background: #2e7d32;
}

.review-stars {
    color: #ffb400;
    margin-bottom: 20px;
    font-size: 18px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-style: italic;
    color: #444;
    max-width: 250px;
}

.reviewer-name {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* FAQ Section Position Adjustment */
.faq-section {
    padding: 60px 5% 100px;
    margin-top: -40px;
    /* Slight overlap effect if desired */
}

/* FAQ Section (1:1 from Image) */
.faq-section {
    padding: 100px 5%;
    background-color: var(--white);
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
}

.faq-left h2 {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #000;
}

.faq-left p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-cards {
    display: flex;
    gap: 20px;
}

.contact-card {
    flex: 1;
    padding: 25px;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    margin-bottom: 15px;
}

.card-icon.blue {
    background: #f0f7ff;
    color: #007aff;
}

.card-icon.green {
    background: #f0fff4;
    color: #28a745;
}

.contact-card p {
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.card-link {
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    color: #007aff;
}

.card-link.green {
    color: #28a745;
}

/* FAQ Right Accordion */
.faq-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 15px;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header i {
    font-size: 12px;
    color: #999;
    background: #f8f9fa;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.accordion-content {
    padding: 0 25px 20px;
    font-size: 14px;
    color: #666;
    display: none;
    /* Initially closed */
}

@media (max-width: 992px) {
    .faq-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* Contact Section */
.contact-section {
    padding: 100px 5%;
    background-color: var(--bluebell-accent);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 60px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-form-wrapper h2 {
    font-family: var(--font-head);
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--bluebell-main);
}

.contact-form-wrapper p {
    margin-bottom: 40px;
    color: #666;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.main-contact-form input,
.main-contact-form select,
.main-contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #e0e0e0;
    font-family: var(--font-main);
    font-size: 14px;
    border-radius: 0;
    outline: none;
    transition: border-color 0.3s;
}

.main-contact-form input:focus,
.main-contact-form select:focus,
.main-contact-form textarea:focus {
    border-color: var(--bluebell-main);
}

.main-contact-form .btn {
    width: 100%;
    margin-top: 10px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}

/* Partners & Suppliers Section */
.partners {
    padding: 80px 5%;
    background-color: #fcfcfc;
    border-top: 1px solid #f0f0f0;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.partners-container h3 {
    font-family: var(--font-head);
    font-size: 12px;
    font-weight: 600;
    color: #999;
    letter-spacing: 3px;
    margin-bottom: 50px;
    text-transform: uppercase;
}

.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.partner-logo {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 24px;
    color: #ccc;
    transition: all 0.3s;
    cursor: default;
    filter: grayscale(100%);
    opacity: 0.7;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    color: var(--bluebell-main);
    transform: scale(1.05);
}

/* --- 页脚区域 - 与按钮同色 --- */
footer {
    background: var(--bluebell-main);
    padding: 150px 8% 50px;
    color: white;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 100px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 80px;
}

.footer-col h4 {
    color: white;
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.footer-col p,
.footer-col li a {
    color: #666;
    font-size: 14px;
    line-height: 2;
    transition: color 0.3s;
}

.footer-col li a:hover {
    color: #fff;
}

.footer-bottom {
    padding-top: 50px;
    font-size: 11px;
    color: #333;
    display: flex;
    justify-content: space-between;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    font-family: var(--font-main);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background: #222;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background: var(--navy);
    transform: translateY(-3px);
}

.acc-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.acc-item {
    font-size: 13px;
    color: #999;
    display: flex;
    align-items: center;
    gap: 10px;
}

.acc-item i {
    color: var(--navy);
    font-size: 14px;
}

/* 页脚底部区域 - 优化布局 */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 0;
    margin-top: 20px;
}

.bottom-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #666;
    gap: 30px;
}

.copyright {
    flex: 1;
    font-family: var(--font-main);
    letter-spacing: 0.3px;
    color: #777;
}

.bottom-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.bottom-links a {
    color: #888;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    padding: 8px 0;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.bottom-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--bluebell-light);
    transition: width 0.3s ease;
}

.bottom-links a:hover {
    color: var(--white);
}

.bottom-links a:hover::after {
    width: 100%;
}

/* 分隔符 */
.bottom-links a:not(:last-child)::before {
    content: '';
    position: absolute;
    right: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.1);
}

/* 移动端响应式 */
@media (max-width: 768px) {
    .bottom-container {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .copyright {
        margin-bottom: 15px;
    }

    .bottom-links {
        flex-direction: column;
        gap: 15px;
    }

    .bottom-links a:not(:last-child)::before {
        display: none;
    }
}

/* FAQ Active State */
.accordion-header.active {
    background: #f8f9fa;
    color: var(--navy);
}

.accordion-header.active i {
    background: var(--navy);
    color: #fff;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
    }

    .features {
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .reviews-grid {
        flex-direction: column;
    }
}

/* --- Projects / Portfolio Grid Styles --- */
.projects-section {
    padding: 100px 8%;
    background-color: #f9f9f9;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--bluebell-main);
    margin-bottom: 20px;
    font-family: var(--font-head);
}

.section-header p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 40px;
}

.project-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.project-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-card:hover .project-image-wrapper img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 60, 94, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-btn {
    padding: 12px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.view-btn:hover {
    background: #fff;
    color: var(--bluebell-main);
}

.project-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.project-category {
    font-size: 0.8rem;
    color: var(--bluebell-light);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.project-title {
    font-size: 1.5rem;
    color: var(--bluebell-main);
    margin-bottom: 15px;
    font-family: var(--font-head);
}

.project-desc {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.85rem;
    color: #888;
}

.project-meta i {
    margin-right: 8px;
    color: var(--bluebell-light);
}

/* Responsive adjustments for project grid */
@media (max-width: 768px) {
    .project-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   INTERNAL PAGES ENHANCEMENT PACK
   Targeting: Services, About, Process, Tips, FAQ
   ========================================= */

/* 1. Enhanced Hero Section for Internal Pages */
/* Use a specific selector to target non-home pages if body class exists, 
   otherwise we rely on the specific html structure of internal pages */
body:not(.home-page) .hero {
    height: 60vh !important;
    min-height: 450px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

body:not(.home-page) .hero-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from {
        transform: scale(1.1);
    }

    to {
        transform: scale(1.25);
    }
}

body:not(.home-page) .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 60, 94, 0.85) 0%, rgba(26, 60, 94, 0.5) 100%);
    z-index: 1;
}

body:not(.home-page) .hero-content {
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeUp 1s ease-out;
}

body:not(.home-page) .hero-content h1 {
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 25px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    font-weight: 700;
}

body:not(.home-page) .hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.95;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 2. Global Section Aesthetics */
.section-padding {
    padding: 100px 8%;
}

/* Alternate backgrounds for visual rhythm - skipping the first one usually */
section:nth-of-type(odd) {
    background-color: #ffffff;
}

section:nth-of-type(even) {
    background-color: #f6f9fc;
}

/* 3. Typography Upgrades */
h2 {
    font-size: 2.5rem;
    color: var(--bluebell-main);
    margin-bottom: 1rem;
    position: relative;
    font-weight: 700;
}

.sub-title {
    display: block;
    font-family: var(--font-head);
    font-size: 0.85rem;
    color: var(--gold-subtle);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #4a5a6a;
    font-weight: 300;
}

/* Divider Line */
.divider {
    width: 80px;
    height: 3px;
    background: var(--gold-subtle);
    margin: 25px 0 35px 0;
    border-radius: 2px;
}

.divider.center {
    margin: 25px auto 35px auto;
}

/* 4. Image Styling */
.shadow-img {
    box-shadow: 0 25px 60px rgba(26, 60, 94, 0.15);
    border-radius: 8px;
    transition: all 0.5s ease;
}

.shadow-img:hover {
    transform: translateY(-8px);
    box-shadow: 0 35px 70px rgba(26, 60, 94, 0.25);
}

/* Circular Images for Team/Testimonials */
.circle-img img {
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.5);
}

/* 5. Icon & List Improvements */
.text-content ul.service-list li {
    font-size: 1.1rem;
    color: #444;
    padding: 15px 0;
    border-bottom: 1px dashed #e0e0e0;
    display: flex;
    align-items: flex-start;
}

.text-content ul.service-list li:last-child {
    border-bottom: none;
}

.text-content ul.service-list li i {
    color: var(--white) !important;
    background: var(--bluebell-light);
    min-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 18px;
    font-size: 14px;
    margin-top: -2px;
    /* Visual alignment */
    box-shadow: 0 4px 10px rgba(74, 122, 181, 0.3);
}

/* 6. Card Styles (Why Choose Us, etc) */
.value-card,
.team-card,
.review-card,
.tip-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.value-card:hover,
.team-card:hover,
.review-card:hover,
.tip-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: none;
}

/* Featured Highlights Slider */
.slider-container {
    margin-top: 50px;
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    gap: 40px;
    width: max-content;
    animation: scroll-carousel 40s linear infinite;
}

@keyframes scroll-carousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-400px * 6 - 40px * 6));
    }
}

.slide {
    flex: 0 0 400px;
}

.slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.slide img:hover {
    transform: scale(1.02);
}

/* Welcome & Process Sections */
.welcome {
    background: white;
    padding: 100px 0;
}

.welcome .container {
    max-width: 1000px;
    text-align: center;
    margin: 0 auto;
}

.welcome .sub-title {
    letter-spacing: 4px;
    color: var(--bluebell-light);
    font-weight: 700;
    display: block;
    margin-bottom: 20px;
}

.welcome h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: 700;
}

.welcome p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 40px;
}

/* Process Steps Section */
.process-steps {
    background: #f8f9fa;
    padding: 100px 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step-item {
    text-align: center;
    position: relative;
    padding: 30px;
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.step-item:hover {
    transform: translateY(-10px);
}

.step-number {
    font-family: var(--font-head);
    font-size: 36px;
    font-weight: 700;
    color: var(--bluebell-light);
    opacity: 0.2;
    margin-bottom: 20px;
    display: block;
}

.step-item h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--bluebell-main);
    letter-spacing: 1px;
}

.step-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: white;
    border-top: 1px solid #f0f0f0;
}

.partners-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.partners-container h3 {
    font-size: 11px;
    letter-spacing: 4px;
    color: #999;
    margin-bottom: 60px;
    text-transform: uppercase;
}

.partners-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.partner-logo {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 24px;
    color: #ccc;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: default;
    filter: grayscale(100%);
    opacity: 0.6;
}

.partner-logo:hover {
    color: var(--bluebell-main);
    transform: scale(1.1);
    filter: grayscale(0%);
    opacity: 1;
}


/* Mobile Responsive Tweaks for Internal Pages */
@media (max-width: 768px) {
    .section-padding {
        padding: 60px 20px;
    }

    body:not(.home-page) .hero {
        height: 50vh !important;
        min-height: 350px;
    }

    body:not(.home-page) .hero-content h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .welcome h2 {
        font-size: 2.2rem;
    }

    .slide {
        flex: 0 0 300px;
    }

    .slide img {
        height: 220px;
    }
}