/* Custom CSS for Law & Immigration Website */

/* Root Variables */
:root {
    --primary-color: #11489a;
    --secondary-color: #0d3a7a;
    --accent-color: #1e5bb8;
    --gold-color: #fc3434;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

/* Navigation Styles */
.navbar {
    background: var(--white) !important;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    padding: 1rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
}

/* Logo Styles */
.logo-image {
    height: 60px;
    width: auto;
    max-width: 300px;
    transition: all 0.3s ease;
}

.logo-image:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    color: var(--primary-color) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--gold-color) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background-color: var(--gold-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Consultation Button */
.consultation-btn {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border: none;
    border-radius: 25px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-left: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(17, 72, 154, 0.3);
}

.consultation-btn:hover {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(17, 72, 154, 0.4);
    color: var(--white);
}

.consultation-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(17, 72, 154, 0.25);
}

/* Services Dropdown Menu Styles */
.services-dropdown {
    position: relative;
}

.services-dropdown .dropdown-menu {
    background: var(--white);
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    padding: 0.5rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
}

.services-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.services-dropdown .dropdown-item {
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-bottom: 1px solid #f8f9fa;
}

.services-dropdown .dropdown-item:last-child {
    border-bottom: none;
}

.services-dropdown .dropdown-item:hover {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

.services-dropdown .dropdown-item:focus {
    background: var(--primary-color);
    color: var(--white);
    text-decoration: none;
}

/* Remove Arrow */
.services-dropdown .dropdown-toggle::after {
    display: none;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(17, 72, 154, 0.9) 0%, rgba(13, 58, 122, 0.9) 100%), 
                url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: var(--white);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(17, 72, 154, 0.8) 0%, rgba(13, 58, 122, 0.8) 100%);
    z-index: 1;
}

.hero-decoration {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    position: relative;
    z-index: 2;
}

.maple-leaf-placeholder {
    width: 600px;
    height: 600px;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s ease;
}

.maple-leaf-placeholder:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

@keyframes cameraShake {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }
    10% {
        transform: translateX(-2px) translateY(1px) rotate(-0.5deg);
    }
    20% {
        transform: translateX(2px) translateY(-1px) rotate(0.5deg);
    }
    30% {
        transform: translateX(-1px) translateY(2px) rotate(-0.3deg);
    }
    40% {
        transform: translateX(1px) translateY(-2px) rotate(0.3deg);
    }
    50% {
        transform: translateX(-1px) translateY(1px) rotate(-0.2deg);
    }
    60% {
        transform: translateX(2px) translateY(-1px) rotate(0.4deg);
    }
    70% {
        transform: translateX(-2px) translateY(2px) rotate(-0.3deg);
    }
    80% {
        transform: translateX(1px) translateY(-1px) rotate(0.2deg);
    }
    90% {
        transform: translateX(-1px) translateY(1px) rotate(-0.1deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.hero-buttons .btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border: none;
    box-shadow: var(--shadow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
}

.btn-outline-light:hover {
    background-color: var(--gold-color);
    border-color: var(--gold-color);
    color: white;
    transform: translateY(-3px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
}

.scroll-down {
    color: var(--white);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    color: var(--gold-color);
    transform: scale(1.2);
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--gold-color) 100%);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* About Section */
.about-content {
    padding: 2rem 0;
}

.about-content .lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.credentials {
    margin-top: 2rem;
}

.credential-item {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.credential-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.credential-item i {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.credential-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* Services Section */
.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 4px solid var(--accent-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--gold-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Testimonials Section */
.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    padding-top: 1rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.6;
}

.testimonial-author {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
}

.author-info h5 {
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-control {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.form-control:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(49, 130, 206, 0.25);
}

.contact-info {
    padding: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 1rem;
    margin-top: 0.25rem;
    min-width: 30px;
}

.contact-item h5 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-dark);
    margin: 0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

footer h5, footer h6 {
    color: var(--white);
    margin-bottom: 1rem;
}

footer p {
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--gold-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-link {
    color: #cbd5e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--gold-color);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form .form-control {
    flex: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 50px;
        max-width: 250px;
    }
    
    .consultation-btn {
        margin-left: 0;
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .logo-image {
        height: 45px;
        max-width: 200px;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .contact-item i {
        margin-right: 0;
        margin-bottom: 0.5rem;
        align-self: center;
    }
    
    .contact-item div {
        text-align: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Global Trade Compliance Page Styles */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 120px 0 30px;
    color: var(--white);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 2rem 0;
}

.intro-text {
    margin-bottom: 3rem;
}

.intro-text .lead {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.section-block {
    margin-bottom: 4rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
}

.section-heading {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    display: flex;
    align-items: center;
}

.section-heading i {
    color: var(--gold-color);
    font-size: 1.5rem;
}

.service-list, .risk-list, .prevention-list {
    margin-top: 2rem;
}

.service-item, .risk-item, .prevention-item {
    background: #f8f9fa;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--accent-color);
    transition: all 0.3s ease;
}

.service-item:hover, .risk-item:hover, .prevention-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.service-item h4, .risk-item h4, .prevention-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.service-item p, .risk-item p, .prevention-item p {
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.6;
}

.service-sublist {
    margin: 1rem 0;
    padding-left: 0;
    list-style: none;
}

.service-sublist li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.service-sublist li:before {
    content: "•";
    color: var(--secondary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

.service-sublist li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.language-item {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--accent-color);
}

.language-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.table th {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.table td {
    vertical-align: middle;
}

.service-card-footer {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.service-card-footer .btn {
    min-width: 120px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card-footer .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 72, 154, 0.3);
}

/* Modern Service Cards */
.service-card-modern {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-modern:hover .card-image img {
    transform: scale(1.05);
}

.card-icon-overlay {
    position: absolute;
    top: calc(65% - 10px);
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: var(--gold-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(252, 52, 52, 0.3);
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .card-image {
        height: 250px;
    }
    
    .card-icon-overlay {
        width: 50px;
        height: 50px;
        top: calc(51% - 10px);
    }
    
    .card-icon-overlay i {
        font-size: 20px;
    }
    
    .service-card-modern {
        margin-bottom: 2rem;
    }
    
    .card-content {
        padding: 1.5rem 1rem 1rem;
    }
    
    .card-content h4 {
        font-size: 1.3rem;
    }
    
    .card-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    /* Mobile Hero Section - Flag on right side */
    .hero-section .row {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-section .col-lg-8 {
        order: 1;
        flex: 0 0 70%;
        max-width: 70%;
    }
    
    .hero-section .col-lg-4 {
        order: 2;
        flex: 0 0 30%;
        max-width: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Mobile Canadian Flag - Even smaller size */
    .maple-leaf-placeholder {
        width: 120px;
        height: 120px;
    }
}

/* Tablet Responsive Adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
    /* Tablet Hero Section - Flag on right side */
    .hero-section .row {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-section .col-lg-8 {
        order: 1;
        flex: 0 0 70%;
        max-width: 70%;
    }
    
    .hero-section .col-lg-4 {
        order: 2;
        flex: 0 0 30%;
        max-width: 30%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    /* Tablet Canadian Flag - Medium size */
    .maple-leaf-placeholder {
        width: 200px;
        height: 200px;
    }
}

.card-icon-overlay i {
    color: white;
    font-size: 24px;
}

.card-content {
    padding: 2rem 1.5rem 1.5rem;
}

.card-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.card-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.read-more-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.read-more-link i {
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(3px);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    color: var(--white);
    margin-top: 3rem;
}

.cta-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-content .btn {
    background: var(--gold-color);
    border: none;
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-content .btn:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Responsive adjustments for the page */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .page-subtitle {
        font-size: 1.1rem;
    }
    
    .section-block {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .section-heading {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-heading i {
        margin-bottom: 0.5rem;
    }
    
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
}

/* Loading Animation */
.loading {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.loading.loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}
