/* ActiveTrademark - Global Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&display=swap');

/* CSS Variables */
:root {
    --primary-color: #830000;
    --secondary-color: #2c1810;
    --accent-color: #830000;
    --success-color: #28a745;
    --text-dark: #2c1810;
    --text-light: #666666;
    --text-muted: #999999;
    --border-color: #e0e0e0;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
}

/* Typography - Playfair Display for Headings */
h1, h2 {
    font-family: 'Playfair Display', serif !important;
}

/* Header Top Row */
.header-top {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

.navbar-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.operating-hours {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 500;
}

/* Navigation Menu Row */
.navbar {
    background: var(--primary-color) !important;
    padding: 12px 0;
}

.navbar .navbar-nav {
    gap: 30px;
}

.navbar-brand {
    font-family: 'Playfair Display', serif !important;
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--secondary-color) !important;
    text-decoration: none;
}

.nav-link {
    color: white !important;
    font-weight: 400;
    margin: 0 15px;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: rgba(255, 255, 255, 0.8) !important;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.btn-nav-phone {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 8px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-nav-phone:hover {
    background: var(--primary-color);
    color: white;
    text-decoration: none;
}

.btn-nav-phone i {
    font-size: 14px;
}

.btn-nav-cta {
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 30px !important;
    font-size: 15px;
    font-weight: 500;
    border-radius: 6px;
    position: relative;
    padding-left: 50px !important;
}

.btn-nav-cta::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.btn-nav-cta:hover {
    background: var(--primary-color);
    color: white;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    padding: 3rem 0;
}

.hero-content {
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.heading-xl {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: white;
    margin-bottom: 1.5rem;
}

.text-lead {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #e2e8f0;
    max-width: 48rem;
    margin: 0 auto 2rem;
}

/* Container */
.container-fluid {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.btn:hover {
    transform: translateY(-0.125rem);
}

/* Jarrah Red Button */
.btn-jarrah {
    background-color: #830000;
    color: white;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    position: relative;
    padding-left: 45px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-right: 24px;
    border-radius: 8px;
}

.btn-jarrah::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.btn-jarrah:hover {
    background-color: #660000;
    color: white;
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    transform: translateY(-2px);
}

/* Outline White Button */
.btn-outline-white {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline-white:hover {
    background-color: white;
    color: #0f172a;
}

/* Introduction Section */
.intro-section {
    padding: 5rem 0;
    background: white;
}

.intro-content {
    max-width: 100%;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.intro-text p:last-child {
    margin-bottom: 0;
}

/* Introduction Section Responsive */
@media (max-width: 768px) {
    .intro-section {
        padding: 3rem 0;
    }
    
    .intro-title {
        font-size: 1.875rem;
        margin-bottom: 1.5rem;
    }
    
    .intro-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .intro-title {
        font-size: 1.625rem;
    }
    
    .intro-section {
        padding: 2.5rem 0;
    }
}

.btn-primary-custom {
    background: #000000;
    color: white;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    border: 2px solid #000000;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background: transparent;
    color: #000000;
    border-color: #000000;
}

/* Stats Bar */
.stats-bar {
    background: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.stat-item {
    text-align: center;
    padding: 10px;
    border-right: 1px solid var(--border-color);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 5px;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Playfair Display', serif !important;
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
}

/* Video Section */
.video-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
}

.video-play-btn {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto 20px;
}

.video-play-btn:hover {
    background: white;
    transform: scale(1.1);
}

.video-play-btn i {
    font-size: 24px;
    color: var(--primary-color);
    margin-left: 4px;
}

/* Bio Section */
.bio-section {
    padding: 2rem;
}

.bio-description {
    margin-bottom: 2rem;
}

.bio-text {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    text-align: left;
}

.bio-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bio-image-small img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.bio-info {
    flex: 1;
}

.bio-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.bio-title {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .bio-section {
        padding: 1rem;
        margin-top: 2rem;
    }
    
    .bio-description {
        margin-bottom: 1.5rem;
    }
    
    .bio-author {
        gap: 0.75rem;
    }
    
    .bio-image-small img {
        width: 50px;
        height: 50px;
    }
    
    .bio-name {
        font-size: 1.125rem;
    }
    
    .bio-title {
        font-size: 0.9rem;
    }
    
    .bio-text {
        font-size: 0.95rem;
    }
}

/* Process Steps */
.process-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.process-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.3s ease;
}

.process-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.25rem;
    margin: 0 auto 20px;
}

.process-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.process-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.feature-item {
    text-align: center;
    padding: 30px 15px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.feature-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Testimonials */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 30px;
    height: 100%;
    border: 1px solid var(--border-color);
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.testimonial-company {
    color: var(--text-light);
    font-size: 13px;
    margin-top: 5px;
}

/* CTA Section */
.cta-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-title {
    font-size: 1.875rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.badge-list {
    margin-bottom: 30px;
}

.badge-item {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    margin: 5px;
    font-size: 14px;
    border: 1px solid rgba(255,255,255,0.2);
}

.btn-cta {
    background: white;
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 48px;
}

.btn-cta::before {
    content: "\f054";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.btn-cta:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Blog Styles */
/* Blog Header */
.blog-header {
    background: var(--primary-color);
    color: white;
    padding: 80px 0 60px;
    margin-top: 10px;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
}

/* Blog Filters */
.blog-filters {
    background: var(--bg-light);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 6px 20px;
    font-size: 14px;
    border-radius: 20px;
    margin: 5px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--secondary-color);
    color: white;
    border-color: var(--secondary-color);
}

/* Blog Content */
.blog-content {
    padding: 60px 0 80px;
}

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

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

.blog-category {
    display: inline-block;
    background: var(--bg-light);
    color: var(--secondary-color);
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 10px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    text-decoration: none;
    display: block;
}

.blog-card-title:hover {
    color: var(--secondary-color);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-meta {
    font-size: 13px;
    color: var(--text-muted);
}

.blog-meta i {
    margin-right: 5px;
}

.blog-meta span {
    margin-right: 15px;
}

/* Blog Post Styles */
.blog-post-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    padding: 20px 0 15px;
}

.blog-post-category {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 6px 15px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 20px;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-post-meta {
    font-size: 15px;
    opacity: 0.9;
}

.blog-post-meta span {
    margin: 0 10px;
}

.blog-post-meta i {
    margin-right: 5px;
}

.blog-content-section {
    padding: 60px 0 80px;
}

.blog-post-content {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-post-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 40px 0 20px;
}

.blog-post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 30px 0 15px;
}

.blog-post-content p {
    margin-bottom: 20px;
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.blog-post-content li {
    margin-bottom: 10px;
}

.blog-post-content blockquote {
    background: var(--bg-light);
    border-left: 4px solid var(--secondary-color);
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
}

.blog-post-content .highlight-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 6px;
    padding: 20px;
    margin: 30px 0;
}

.blog-post-content .highlight-box i {
    color: #f39c12;
    margin-right: 10px;
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* CTA Widget */
.cta-widget {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
    padding: 30px 25px;
}

.cta-widget h3 {
    color: white;
    margin-bottom: 15px;
}

.cta-widget p {
    font-size: 15px;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-widget .features-list {
    text-align: left;
    margin-bottom: 25px;
}

.cta-widget .features-list li {
    list-style: none;
    padding: 5px 0;
    font-size: 14px;
}

.cta-widget .features-list li i {
    color: #4cd137;
    margin-right: 8px;
}

.btn-cta-sidebar {
    background: white;
    color: var(--primary-color);
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid white;
    text-decoration: none;
    display: inline-block;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-cta-sidebar:hover {
    background: transparent;
    color: white;
    border-color: white;
}

/* Related Posts */
.related-post {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.related-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-post-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}

.related-post-title:hover {
    color: var(--secondary-color);
}

.related-post-date {
    font-size: 13px;
    color: var(--text-muted);
}

/* Share Buttons */
.share-widget {
    text-align: center;
}

.share-btn {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    margin: 0 5px;
    color: white;
    text-decoration: none;
    font-size: 18px;
}

.share-btn.facebook {
    background: #3b5998;
}

.share-btn.twitter {
    background: #1da1f2;
}

.share-btn.linkedin {
    background: #0077b5;
}

.share-btn.email {
    background: var(--text-dark);
}


/* Post Navigation */
.post-navigation {
    border-top: 1px solid var(--border-color);
    padding-top: 40px;
    margin-top: 50px;
}

.nav-link-post {
    text-decoration: none;
    color: var(--text-dark);
}

.nav-link-post:hover {
    color: var(--secondary-color);
}

.nav-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.nav-title {
    font-size: 16px;
    font-weight: 600;
}

/* Pagination */
.blog-pagination {
    margin-top: 50px;
}

.page-link {
    color: var(--text-dark);
    border-color: var(--border-color);
    padding: 8px 15px;
    margin: 0 3px;
}

.page-link:hover {
    color: var(--secondary-color);
    background: var(--bg-light);
    border-color: var(--border-color);
}

.page-item.active .page-link {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Newsletter Section */
.newsletter-section {
    background: var(--bg-light);
    padding: 60px 0;
    text-align: center;
}

.newsletter-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.newsletter-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-input {
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    font-size: 15px;
}

.btn-newsletter {
    background: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    border: none;
    font-weight: 500;
}

.btn-newsletter:hover {
    background: var(--primary-color);
    color: white;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    color: white;
    padding: 60px 0 20px;
}

.footer-brand {
    font-family: 'Playfair Display', serif !important;
    font-weight: 600;
    font-size: 1.75rem;
    color: white !important;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-text {
    color: #e2e8f0;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.office-info p {
    margin-bottom: 8px;
    font-size: 14px;
}

.office-name {
    color: #e2e8f0;
    font-weight: 500;
}

.office-address {
    color: #cbd5e1;
    line-height: 1.4;
}

.office-phone a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.office-phone a:hover {
    color: #e2e8f0;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(226, 232, 240, 0.2);
    margin-top: 40px;
    padding-top: 25px;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 0;
}

.footer-legal-links {
    text-align: right;
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-legal-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: white;
}

/* Navigation Responsive */
@media (max-width: 991.98px) {
    .navbar-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .navbar-bottom-row .navbar-toggler {
        margin: 0 auto;
        display: block;
    }
}

@media (max-width: 576px) {
    .btn-nav-phone,
    .btn-nav-cta {
        font-size: 14px;
        padding: 6px 16px;
    }
}

/* Footer Responsive */
@media (max-width: 768px) {
    footer {
        padding: 40px 0 20px;
    }
    
    .footer-legal-links {
        justify-content: flex-start;
        text-align: left;
        margin-top: 15px;
    }
    
    .footer-bottom .row {
        flex-direction: column;
        text-align: center;
    }
}

/* FAQ Accordion Styles */
.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-header {
    margin: 0;
}

.faq-button {
    background: none;
    border: none;
    width: 100%;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-button:hover {
    background: var(--bg-light);
    color: var(--secondary-color);
}

.faq-button:focus {
    outline: none;
    box-shadow: none;
}

.faq-button i {
    transition: transform 0.3s ease;
    color: var(--secondary-color);
}

.faq-button:not(.collapsed) i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 15px 25px 25px 25px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-light);
    border-top: 1px solid var(--border-color);
    margin-top: -1px;
}

.faq-item .collapse {
    border-top: none;
}

.faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Trademark Registration Form Styles */
.form-progress {
    margin-bottom: 3rem;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    position: relative;
}

.progress-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--border-color);
    z-index: 1;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.step-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-muted);
    text-align: center;
}

.step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-bar {
    height: 4px;
    background: var(--border-color);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    transition: width 0.4s ease;
}

.form-container {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    padding: 2rem;
}

@media (max-width: 768px) {
    .form-container {
        padding: 1.5rem;
    }
}

.form-step {
    display: none !important;
    padding: 0;
}

.form-step.active {
    display: block !important;
}

.step-header {
    text-align: center;
    margin-bottom: 2rem;
}

.step-header h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.trademark-option,
.owner-option {
    display: block;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trademark-option input,
.owner-option input {
    display: none;
}

.option-content {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.trademark-option:hover .option-content,
.owner-option:hover .option-content {
    border-color: var(--secondary-color);
    background: rgba(127, 157, 177, 0.05);
}

.trademark-option.active .option-content,
.owner-option.active .option-content {
    border-color: var(--primary-color);
    background: rgba(13, 59, 102, 0.05);
}

.option-content i {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem !important;
}

.trademark-option.active .option-content i,
.owner-option.active .option-content i {
    color: var(--primary-color);
}

.option-content h5 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-weight: 600;
    font-size: 1rem;
}

.option-content p {
    color: var(--text-light);
    margin-bottom: 0;
    font-size: 0.75rem;
    line-height: 1.3;
}

.trademark-input {
    margin-bottom: 2rem;
}

.form-control-lg {
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
}

.upload-zone {
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-light);
}

.upload-zone:hover,
.upload-zone.drag-over {
    border-color: var(--secondary-color);
    background: rgba(127, 157, 177, 0.05);
}

.upload-content i {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.upload-content h5 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.upload-content p {
    color: var(--text-light);
    margin-bottom: 0;
}

.file-preview-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: var(--bg-white);
}

.file-info {
    flex: 1;
}

.file-info p {
    margin-bottom: 0.25rem;
}

.class-explanation {
    margin-bottom: 2rem;
}

.alert-info {
    background: rgba(180, 214, 227, 0.1);
    border: 1px solid var(--accent-color);
    color: var(--text-dark);
}

.alert-info .fas {
    color: var(--primary-color);
}

.pricing-preview,
.pricing-breakdown {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.pricing-preview h5 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.price-item,
.price-line {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.price-item:not(:last-child),
.price-line:not(:last-child) {
    border-bottom: 1px solid var(--border-color);
}

.price-line.subtotal {
    font-weight: 600;
    color: var(--text-dark);
}

.price-line.total {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 2px solid var(--primary-color);
    margin-top: 0.5rem;
    padding-top: 1rem;
}

.order-summary {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.summary-item h5 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.pricing-details {
    background: var(--bg-white);
    border-radius: 8px;
    padding: 1.5rem;
}

.payment-section {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.payment-section h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.btn-block {
    width: 100%;
}

.form-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.form-navigation .btn {
    flex: 1;
    max-width: 180px;
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
}

.form-navigation .btn:only-child {
    margin-left: auto;
}

/* Form Controls */
.form-control,
.form-select {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 0.5rem 0.75rem;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(13, 59, 102, 0.15);
    outline: none;
}

.form-label {
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-top: 0.25rem;
}

.btn-primary {
    background: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: white !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    line-height: 1.2 !important;
    border-radius: 4px !important;
}

.btn-primary:hover {
    background: var(--secondary-color) !important;
    border-color: var(--secondary-color) !important;
    color: white !important;
}

.btn-outline-secondary {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-outline-secondary:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .step-header h2 {
        font-size: 1.25rem;
    }
    
    .option-content {
        min-height: 120px;
        padding: 1.25rem 0.75rem;
    }
    
    .option-content h5 {
        font-size: 1rem;
    }
    
    .option-content p {
        font-size: 0.75rem;
    }
    
    .upload-zone {
        padding: 1.5rem 1rem;
    }
    
    .form-navigation {
        flex-direction: column;
    }
    
    .form-navigation .btn {
        max-width: none;
        width: 100%;
    }
    
    .progress-steps {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .step-label {
        font-size: 0.75rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title,
    .blog-title,
    .blog-post-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
        padding: 15px;
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .filter-btn {
        font-size: 13px;
        padding: 5px 15px;
    }
    
    .blog-sidebar {
        margin-top: 40px;
    }
    
}

/* Service Cards */
/* Card hover animations removed */

.service-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1.5rem;
    color: white !important;
    font-size: 1.8rem;
}

.service-card h4 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    color: var(--text-dark);
    font-size: 0.875rem;
    padding: 0.25rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-features li i {
    color: var(--success-color);
    font-size: 0.75rem;
    margin-right: 0.5rem;
    min-width: 16px;
}

.service-price {
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.btn-service {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-block;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-service:hover {
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-2px);
}

/* Service Cards Mobile */
@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .service-card h4 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .service-features li {
        font-size: 0.8rem;
    }
    
    .service-price {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .btn-service {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Hero Section Responsive Design */
@media (max-width: 768px) {
    .heading-xl {
        font-size: 2rem;
    }

    .hero-section {
        padding: 3rem 0;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .container-fluid {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .heading-xl {
        font-size: 1.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }
}

/* Tablet and up */
@media (min-width: 768px) {
    .container-fluid {
        padding: 0 2rem;
    }

    .hero-section {
        padding: 4rem 0;
    }

    .hero-buttons {
        flex-direction: row;
    }
}

/* Desktop and up */
@media (min-width: 1024px) {
    .heading-xl {
        font-size: 3rem;
    }

    .text-lead {
        font-size: 1.25rem;
    }

    .hero-section {
        padding: 5rem 0;
    }
}

@media (min-width: 1280px) {
    .heading-xl {
        font-size: 3.5rem;
    }
}

/* Main Content Styles */
.main-content {
    padding: 4rem 0;
    background: white;
}

.main-article {
    padding-right: 2rem;
}

.content-section {
    margin-bottom: 4rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

/* Typography */
.heading-lg {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.heading-md {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.content-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.content-text p {
    margin-bottom: 1.5rem;
}

.content-text p:last-child {
    margin-bottom: 0;
}

/* Image Placeholder */
.image-placeholder {
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 12px;
    padding: 3rem 2rem;
    margin: 3rem 0;
    text-align: center;
}

.placeholder-content {
    max-width: 300px;
    margin: 0 auto;
}

.placeholder-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    color: var(--text-muted);
}

.placeholder-icon svg {
    width: 100%;
    height: 100%;
}

.placeholder-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.placeholder-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    border-color: var(--secondary-color);
}

.service-item .service-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}


/* Additional Content */
.additional-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.info-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.info-list li:last-child {
    border-bottom: none;
}

/* Sidebar Styles */
.sidebar {
    padding-left: 2rem;
}

.cta-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: sticky;
    top: 1rem;
}

.home-sidebar .cta-card {
    position: static;
}

.card-header {
    padding: 2rem 2rem 1rem;
    background: white;
    border-bottom: none;
}

.card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 0;
}

.card-content {
    padding: 1rem 2rem 2rem;
}

.cta-buttons-container {
    text-align: center;
}

.cta-button-group {
    margin-bottom: 0;
}

.full-width {
    width: 100%;
    margin-bottom: 0.75rem;
}

.cta-button-description {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .main-article {
        padding-right: 1rem;
    }
    
    .sidebar {
        padding-left: 1rem;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .main-content {
        padding: 2rem 0;
    }
    
    .main-article,
    .sidebar {
        padding-left: 0;
        padding-right: 0;
    }
    
    .content-section {
        margin-bottom: 3rem;
    }
    
    .heading-lg {
        font-size: 1.875rem;
    }
    
    .heading-md {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .content-text {
        font-size: 1rem;
    }
    
    .services-grid {
        gap: 1.5rem;
    }
    
    .service-item {
        padding: 1.25rem;
    }
    
    
    .image-placeholder {
        padding: 2rem 1rem;
        margin: 2rem 0;
    }
    
    .card-header,
    .card-content {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}