/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --brand-orange: #d75215ff;
    --brand-blue: #00305bff;
    --brand-orange-light: #e67e22;
    --brand-blue-light: #1a4a7a;
    --text-dark: #00305bff;
    --text-light: #666;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-light: rgba(0, 48, 91, 0.1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 40px;
    width: auto;
    /* Removed white filter to show original logo colors */
}

.logo-img {
    height: 40px;
    width: auto;
    /* Removed white filter to show original logo colors */
}

.nav-logo h2 {
    color: var(--brand-blue);
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--brand-blue);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--brand-orange);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--brand-orange);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.appointment-btn {
    background: var(--brand-orange);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.appointment-btn:hover {
    background: var(--brand-orange-light);
    transform: translateY(-2px);
}

.appointment-btn::after {
    display: none;
}

.smartvault-btn {
    background: var(--brand-blue);
    color: white !important;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.smartvault-btn:hover {
    background: var(--brand-blue-light);
    transform: translateY(-2px);
}

.smartvault-btn::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--brand-blue);
    margin: 3px 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

/* Hamburger Animation */
.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-light) 100%);
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
}

.hero-logo {
    text-align: center;
    margin-bottom: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-logo-img {
    height: 140px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes logo white for hero section */
    transition: transform 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-logo-img:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.95);
}

.hero-feature i {
    color: var(--brand-orange);
    font-size: 1.1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
    min-width: 200px;
}

.btn-primary {
    background: var(--brand-orange);
    color: white;
}

.btn-primary:hover {
    background: var(--brand-orange-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(215, 82, 21, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--brand-blue);
    transform: translateY(-2px);
}

.hero-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.hero-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--brand-orange);
}

.hero-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.hero-card-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
    text-align: left;
}

.hero-card-features span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--brand-orange);
    margin-bottom: 1rem;
}

.feature h4 {
    font-size: 1.2rem;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-photo {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--brand-orange);
    box-shadow: 0 10px 30px rgba(215, 82, 21, 0.3);
    transition: transform 0.3s ease;
}

.profile-photo:hover {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.services-categories {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.category-item {
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 15px;
    border-left: 4px solid var(--brand-orange);
}

.category-label {
    font-size: 0.9rem;
    color: #8b4513;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.category-item h3 {
    font-size: 2rem;
    color: var(--brand-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.btn-dark {
    background: var(--brand-blue);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-dark:hover {
    background: var(--brand-blue-light);
    transform: translateY(-2px);
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f1f1f1;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-image {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #3498db, #2980b9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.service-image i {
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.1rem;
    color: var(--brand-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.learn-more-btn {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.learn-more-btn:hover {
    color: var(--brand-orange-light);
}

/* Blog Post Pages */
.blog-header {
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-light) 100%);
    color: white;
    padding: 120px 0 60px;
    margin-top: 70px;
}

.blog-header-content {
    text-align: center;
}

.back-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 2rem;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.back-link:hover {
    opacity: 0.8;
    color: white;
}

.blog-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    opacity: 0.9;
}

.blog-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-content {
    padding: 60px 0;
    background: white;
}

.blog-post {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post .blog-image {
    height: 300px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.blog-post .blog-image i {
    font-size: 4rem;
    color: white;
}

.post-content {
    line-height: 1.8;
}

.post-content .lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 500;
}

.post-content h2 {
    font-size: 2rem;
    color: var(--brand-blue);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.post-content h3 {
    font-size: 1.5rem;
    color: var(--brand-blue);
    margin: 1.5rem 0 0.5rem;
    font-weight: 600;
}

.post-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.post-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.cta-box {
    background: linear-gradient(135deg, var(--light-gray) 0%, #e9ecef 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
    border-left: 4px solid var(--brand-orange);
}

.cta-box h3 {
    color: var(--brand-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-box p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.blog-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    background: var(--brand-orange);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.share-buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.share-buttons span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.share-btn {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: #3498db;
    color: white;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.share-btn:hover {
    background: #2980b9;
    transform: translateY(-2px);
    color: white;
}

/* Mobile Responsiveness for Blog Posts */
@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-footer {
        flex-direction: column;
        text-align: center;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .post-content h3 {
        font-size: 1.2rem;
    }
}

/* Appointment Section */
.appointment {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.appointment-info h3 {
    font-size: 2rem;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.appointment-info p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.appointment-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.appointment-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.appointment-feature i {
    font-size: 1.5rem;
    color: var(--brand-orange);
}

.calendly-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: white;
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.reviews-summary {
    text-align: center;
}

.rating-overview {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #e9ecef;
}

.rating-overview .stars {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.rating-overview .stars i {
    color: #ffc107;
    font-size: 1.5rem;
}

.rating-overview h3 {
    font-size: 2rem;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.rating-overview p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.btn-outline {
    background: transparent;
    color: var(--brand-orange);
    border: 2px solid var(--brand-orange);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--brand-orange);
    color: white;
    transform: translateY(-2px);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--brand-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.reviewer-info h4 {
    font-size: 1.1rem;
    color: var(--brand-blue);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.reviewer-info .stars {
    display: flex;
    gap: 0.1rem;
}

.reviewer-info .stars i {
    color: #ffc107;
    font-size: 0.9rem;
}

.review-source {
    color: #4285f4;
    font-size: 1.2rem;
}

.review-card p {
    color: var(--text-light);
    line-height: 1.6;
    font-style: italic;
    margin: 0;
}

/* SmartVault Section */
.smartvault {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-light) 100%);
    color: white;
}

.smartvault-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.smartvault-info h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.smartvault-info p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.smartvault-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.smartvault-icon i {
    font-size: 6rem;
    color: var(--brand-orange);
}

/* Blog Section */
.blog {
    padding: 80px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image i {
    font-size: 3rem;
    color: white;
}

.blog-content {
    padding: 2rem;
}

.blog-content h3 {
    font-size: 1.3rem;
    color: var(--brand-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.blog-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.read-more {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: var(--brand-orange-light);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-content {
    display: flex;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-item i {
    font-size: 2rem;
    color: var(--brand-orange);
    width: 50px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.4;
}



/* Footer */
.footer {
    background: var(--brand-blue);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes logo white for footer */
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
}



.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

.footer-legal {
    margin-top: 1rem;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--brand-orange);
}

/* Font Awesome Fallback Icons */
.fas, .fab {
    font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', sans-serif;
}

/* Fallback for common icons if Font Awesome fails to load */
.fas.fa-certificate::before { content: "📜"; }
.fas.fa-map-marker-alt::before { content: "📍"; }
.fas.fa-clock::before { content: "🕐"; }
.fas.fa-calculator::before { content: "🧮"; }
.fas.fa-industry::before { content: "🏭"; }
.fas.fa-graduation-cap::before { content: "🎓"; }
.fas.fa-users::before { content: "👥"; }
.fas.fa-handshake::before { content: "🤝"; }
.fas.fa-users-cog::before { content: "⚙️"; }
.fas.fa-building::before { content: "🏢"; }
.fas.fa-city::before { content: "🏙️"; }
.fas.fa-balance-scale::before { content: "⚖️"; }
.fas.fa-calendar-check::before { content: "📅"; }
.fas.fa-video::before { content: "📹"; }
.fas.fa-mobile-alt::before { content: "📱"; }
.fas.fa-star::before { content: "⭐"; }
.fas.fa-user::before { content: "👤"; }
.fas.fa-lock::before { content: "🔒"; }
.fas.fa-newspaper::before { content: "📰"; }
.fas.fa-chart-pie::before { content: "📊"; }
.fas.fa-coins::before { content: "💰"; }
.fas.fa-phone::before { content: "📞"; }
.fas.fa-envelope::before { content: "✉️"; }
.fas.fa-arrow-left::before { content: "←"; }
.fas.fa-calendar::before { content: "📅"; }

.fab.fa-google::before { content: "G"; }

/* Legal Pages Styling */
.legal-page main {
    padding-top: 120px;
    max-width: 800px;
    margin: 0 auto;
}

.legal-page h1 {
    color: var(--brand-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.legal-page h2 {
    color: var(--brand-blue);
    font-size: 1.8rem;
    margin: 2rem 0 1rem 0;
    border-bottom: 2px solid var(--brand-orange);
    padding-bottom: 0.5rem;
}

.legal-page section {
    margin: 2rem 0;
}

.legal-page p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.legal-page .back-link {
    color: var(--brand-orange);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-page .back-link:hover {
    color: var(--brand-orange-light);
}

/* Mobile styles for legal pages */
@media (max-width: 768px) {
    .legal-page main {
        padding: 100px 1rem 2rem;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .legal-page h2 {
        font-size: 1.5rem;
    }
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-logo-img {
        height: 120px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    /* Navigation Mobile */
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, var(--brand-blue) 0%, var(--brand-blue-light) 100%);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.4s ease-in-out;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 80px 2rem 2rem;
        z-index: 999;
        justify-content: flex-start;
        align-items: center;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1.5rem 0;
        width: 100%;
    }

    .nav-menu .nav-link {
        color: white;
        font-size: 1.2rem;
        font-weight: 600;
        padding: 1rem 2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .nav-menu .nav-link:hover {
        background: rgba(255, 255, 255, 0.1);
        color: white;
        transform: translateY(-2px);
    }

    .nav-menu .nav-link::after {
        display: none;
    }

    .nav-menu .appointment-btn,
    .nav-menu .smartvault-btn {
        margin: 1rem auto;
        display: block;
        width: 100%;
        max-width: 300px;
        background: var(--brand-orange);
        color: white !important;
        border: 2px solid var(--brand-orange);
    }

    .nav-menu .appointment-btn:hover,
    .nav-menu .smartvault-btn:hover {
        background: var(--brand-orange-light);
        border-color: var(--brand-orange-light);
        color: white !important;
    }

    .nav-menu .smartvault-btn {
        background: transparent;
        border-color: white;
    }

    .nav-menu .smartvault-btn:hover {
        background: rgba(255, 255, 255, 0.1);
        border-color: white;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero-container {
        text-align: center;
        gap: 2rem;
        padding: 0 15px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-image {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-logo {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-logo-img {
        height: 80px;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .footer-logo-img {
        height: 40px;
    }

    /* Hero Features Mobile */
    .hero-features {
        justify-content: center;
        gap: 1rem;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-feature {
        font-size: 0.9rem;
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    /* Hero Buttons Mobile */
    .hero-buttons {
        justify-content: center;
        gap: 0.8rem;
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        min-width: 250px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    /* Hero Card Mobile */
    .hero-card {
        padding: 1.5rem;
        margin: 0 10px;
    }

    .hero-card i {
        font-size: 2.5rem;
    }

    .hero-card h3 {
        font-size: 1.3rem;
    }

    .hero-card-features {
        text-align: center;
    }

    /* Section Headers Mobile */
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    /* About Section Mobile */
    .about {
        padding: 60px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-text {
        order: 2;
    }

    .about-image {
        order: 1;
        margin-bottom: 1rem;
    }

    .about-text h3 {
        font-size: 1.8rem;
        margin-top: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        text-align: left;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .feature {
        padding: 1.5rem 1rem;
        text-align: left;
    }

    .feature h4 {
        text-align: center;
    }

    .feature p {
        text-align: left;
    }

    .profile-photo {
        width: 280px;
        height: 280px;
        margin: 0 auto;
    }

    /* Services Section Mobile */
    .services {
        padding: 60px 0;
    }

    .services-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .service-image {
        width: 80px;
        height: 80px;
    }

    .service-image i {
        font-size: 1.2rem;
    }

    .category-item {
        padding: 1.5rem;
        text-align: center;
    }

    .category-item h3 {
        font-size: 1.8rem;
    }

    /* Appointment Section Mobile */
    .appointment {
        padding: 60px 0;
    }

    .appointment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .appointment-info h3 {
        font-size: 1.8rem;
    }

    .appointment-info p {
        font-size: 1rem;
    }

    .appointment-features {
        gap: 0.8rem;
    }

    .appointment-feature {
        padding: 0.8rem;
    }

    .appointment-feature i {
        font-size: 1.2rem;
    }

    /* Reviews Section Mobile */
    .reviews {
        padding: 60px 0;
    }

    .reviews-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .rating-overview {
        padding: 1.5rem;
    }

    .rating-overview h3 {
        font-size: 1.8rem;
    }

    /* SmartVault Section Mobile */
    .smartvault {
        padding: 60px 0;
    }

    .smartvault-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .smartvault-info h3 {
        font-size: 1.8rem;
    }

    .smartvault-info p {
        font-size: 1rem;
    }

    .smartvault-icon i {
        font-size: 4rem;
    }

    /* Blog Section Mobile */
    .blog {
        padding: 60px 0;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card {
        margin: 0 10px;
    }

    .blog-content {
        padding: 1.5rem;
    }

    .blog-content h3 {
        font-size: 1.2rem;
    }

    .blog-content p {
        font-size: 0.9rem;
    }

    /* Contact Section Mobile */
    .contact {
        padding: 60px 0;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 15px;
    }

    .contact-item {
        padding: 1.2rem;
    }

    .contact-item i {
        font-size: 1.5rem;
        width: 40px;
    }

    .contact-item h4 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-section {
        margin-bottom: 1.5rem;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    /* Blog Post Pages Mobile */
    .blog-header {
        padding: 100px 0 40px;
        margin-top: 60px;
    }

    .blog-header h1 {
        font-size: 2rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .blog-footer {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content h3 {
        font-size: 1.3rem;
    }

    .post-content .lead {
        font-size: 1.1rem;
    }

    /* Calendly Mobile */
    .calendly-container {
        padding: 1rem;
        margin: 0 10px;
    }
    
    .calendly-inline-widget {
        min-width: 280px !important;
        height: 600px !important;
    }
}

@media (max-width: 480px) {
    /* Extra Small Mobile Optimizations */
    .container {
        padding: 0 10px;
    }

    /* Hero Section Extra Small */
    .hero {
        padding: 80px 0 40px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-content h2 {
        font-size: 1.3rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .hero-logo {
        padding: 0.8rem;
        margin-bottom: 1rem;
    }

    .hero-logo-img {
        height: 60px;
    }

    /* Hero Features Extra Small */
    .hero-features {
        gap: 0.8rem;
    }

    .hero-feature {
        font-size: 0.8rem;
        max-width: 250px;
    }

    .hero-feature i {
        font-size: 1rem;
    }

    /* Hero Buttons Extra Small */
    .hero-buttons {
        gap: 0.5rem;
    }

    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        min-width: 200px;
        max-width: 280px;
    }

    /* Hero Card Extra Small */
    .hero-card {
        padding: 1rem;
        margin: 0 5px;
    }

    .hero-card i {
        font-size: 2rem;
    }

    .hero-card h3 {
        font-size: 1.1rem;
    }

    .hero-card-features span {
        font-size: 0.8rem;
    }

    /* Section Headers Extra Small */
    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    /* About Section Extra Small */
    .about {
        padding: 40px 0;
    }

    .about-text h3 {
        font-size: 1.6rem;
        margin-top: 0.5rem;
    }

    .about-text p {
        font-size: 0.9rem;
        text-align: left;
    }

    .about-features {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .feature {
        padding: 1rem 0.8rem;
    }

    .profile-photo {
        width: 220px;
        height: 220px;
        margin: 0 auto;
    }

    /* Services Section Extra Small */
    .services {
        padding: 40px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .service-card {
        padding: 1rem;
    }

    .service-image {
        width: 60px;
        height: 60px;
    }

    .service-image i {
        font-size: 1rem;
    }

    .category-item {
        padding: 1rem;
    }

    .category-item h3 {
        font-size: 1.4rem;
    }

    /* Appointment Section Extra Small */
    .appointment {
        padding: 40px 0;
    }

    .appointment-info h3 {
        font-size: 1.6rem;
    }

    .appointment-info p {
        font-size: 0.9rem;
    }

    .appointment-feature {
        padding: 0.6rem;
    }

    .appointment-feature i {
        font-size: 1rem;
    }

    /* Reviews Section Extra Small */
    .reviews {
        padding: 40px 0;
    }

    .review-card {
        padding: 1rem;
    }

    .rating-overview {
        padding: 1rem;
    }

    .rating-overview h3 {
        font-size: 1.6rem;
    }

    /* SmartVault Section Extra Small */
    .smartvault {
        padding: 40px 0;
    }

    .smartvault-info h3 {
        font-size: 1.6rem;
    }

    .smartvault-info p {
        font-size: 0.9rem;
    }

    .smartvault-icon i {
        font-size: 3rem;
    }

    /* Blog Section Extra Small */
    .blog {
        padding: 40px 0;
    }

    .blog-content {
        padding: 1rem;
    }

    .blog-content h3 {
        font-size: 1.1rem;
    }

    .blog-content p {
        font-size: 0.8rem;
    }

    /* Contact Section Extra Small */
    .contact {
        padding: 40px 0;
    }

    .contact-item {
        padding: 1rem;
    }

    .contact-item i {
        font-size: 1.2rem;
        width: 35px;
    }

    .contact-item h4 {
        font-size: 0.9rem;
    }

    .contact-item p {
        font-size: 0.8rem;
    }

    /* Footer Extra Small */
    .footer {
        padding: 30px 0 15px;
    }

    .footer-section h3 {
        font-size: 1.2rem;
    }

    .footer-section p {
        font-size: 0.8rem;
    }

    /* Blog Post Pages Extra Small */
    .blog-header {
        padding: 80px 0 30px;
        margin-top: 50px;
    }

    .blog-header h1 {
        font-size: 1.8rem;
    }

    .post-content h2 {
        font-size: 1.3rem;
    }

    .post-content h3 {
        font-size: 1.1rem;
    }

    .post-content .lead {
        font-size: 1rem;
    }

    /* Calendly Extra Small */
    .calendly-container {
        padding: 0.8rem;
        margin: 0 5px;
    }
    
    .calendly-inline-widget {
        min-width: 260px !important;
        height: 550px !important;
    }

    /* Navigation Extra Small */
    .nav-menu {
        top: 0;
        padding: 70px 1rem 1rem;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-menu .nav-link {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }

    .logo-img {
        height: 25px;
    }

    .hamburger {
        padding: 3px;
    }

    .bar {
        width: 22px;
        height: 2px;
    }
}

/* Touch-friendly improvements */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Body scroll lock for mobile menu */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Hover Effects */
.service-card:hover .service-icon {
    transform: scale(1.1);
}

.feature:hover i {
    transform: scale(1.2);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-orange-light);
}

/* Calendly Inline Widget Customization */
.calendly-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.calendly-inline-widget {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Ensure Calendly widget integrates well with website design */
.calendly-inline-widget iframe {
    border-radius: 15px;
    border: none;
}

/* Booking alternatives styling */
.booking-alternatives {
    margin-top: 2rem;
    text-align: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 1px solid #e9ecef;
}

.booking-alternatives h4 {
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.booking-alternatives p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.booking-alternatives .btn {
    margin: 0.25rem;
    min-width: 140px;
}

/* Mobile optimization for Calendly inline widget */
@media (max-width: 768px) {
    .calendly-container {
        padding: 1rem;
    }
    
    .calendly-inline-widget {
        min-width: 280px !important;
        height: 600px !important;
    }
    
    .booking-alternatives {
        padding: 1rem;
    }
    
    .booking-alternatives .btn {
        min-width: 120px;
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }
}

/* Calendly Spinner Animation */
.calendly-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    text-align: center;
}

.calendly-bounce1, .calendly-bounce2, .calendly-bounce3 {
    width: 8px;
    height: 8px;
    background-color: var(--brand-orange);
    border-radius: 100%;
    display: inline-block;
    animation: calendly-bounce 1.4s infinite ease-in-out both;
}

.calendly-bounce1 {
    animation-delay: -0.32s;
}

.calendly-bounce2 {
    animation-delay: -0.16s;
}

@keyframes calendly-bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1.0);
    }
} 