/* Main Styles for Ways Beyond Website */

/* Custom Font - Using system Avenir Next with fallbacks */

:root {
    --primary-color: #CB7C57;
    --secondary-color: #ff006e;
    --dark-color: #212529;
    --light-color: #f8f8f8;
    --white-color: #ffffff;
    --red-color: #60130F;
    --green-color: #757F69;
    --light-green-color: #c8d3b4;
    --black-color: #000000;
    --value-bg-color: #E5DDCD;
    --btn-radius-one: #A7B753;
    --btn-radius-two: #A3B18A;
    --feature-color: #F17D5A;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b56e4c;
}

body {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    background-color: #EAEEE5;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

/* Header Styles */
.navbar {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 0.8rem 1rem;
    background-color: #EAEEE5;
    transition: all 0.3s ease;
}

.navbar .container {
    justify-content: space-between;
}

.navbar-collapse {
    justify-content: flex-start !important;
}

.navbar-nav {
    margin-left: 2rem;
}

@media (min-width: 992px) {
    .navbar .container {
        justify-content: flex-start;
    }
}

.navbar.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 0.5rem 1rem;
}

.navbar-brand img.logo {
    max-height: 50px;
    transition: max-height 0.3s ease;
}

.fixed-header .navbar-brand img.logo {
    max-height: 45px;
}

.nav-link {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0.5rem;
    color: #cb7c57;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    position: relative;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: #b56e4c;
    background-color: rgba(203, 124, 87, 0.1);
}

.nav-link.active {
    color: #cb7c57;
    font-weight: 600;
    background-color: rgba(203, 124, 87, 0.15);
    border-bottom: 3px solid #cb7c57;
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 8px 12px;
    position: relative;
    background: white;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(203, 124, 87, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(203, 124, 87, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
}

.navbar-close-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Dropdown Styles */
.navbar .dropdown:hover .dropdown-menu {
    display: block;
}

.navbar .dropdown-menu {
    background-color: #D6CBE8;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    padding: 8px;
    margin-top: 8px;
    min-width: 180px;
    animation: dropdownSlide 0.3s ease-out;
    overflow: hidden;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar .dropdown-item {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    color: #3d3d3d;
    padding: 10px 16px;
    transition: all 0.3s ease;
    border-radius: 6px;
    margin: 2px 4px;
    position: relative;
    overflow: hidden;
    display: block;
}

.navbar .dropdown-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), rgba(203, 124, 87, 0.8));
    transition: left 0.3s ease;
    z-index: -1;
    border-radius: 6px;
}

.navbar .dropdown-item:hover {
    background-color: transparent;
    color: white;
    transform: none; /* Remove the translateX to keep animation inside container */
}

.navbar .dropdown-item:hover::before {
    left: 0;
}

.navbar .dropdown-item:active {
    background-color: transparent;
}

/* Dropdown toggle arrow styling */
.navbar .dropdown-toggle::after {
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
    transition: transform 0.3s ease;
}

.navbar .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Mobile dropdown adjustments */
@media (max-width: 992px) {
    .navbar .dropdown:hover .dropdown-menu {
        display: none; /* Disable hover on mobile */
    }
    
    .navbar .dropdown-menu {
        background-color: #D6CBE8;
        border: 1px solid var(--primary-color);
        border-radius: 8px;
        margin-top: 8px;
        margin-left: 15px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        position: static !important;
        transform: none !important;
        width: calc(100% - 30px);
        display: none;
    }
    
    .navbar .dropdown-menu.show {
        display: block !important;
    }
    
    .navbar .dropdown-item {
        padding: 12px 20px;
        margin: 2px 5px;
        border-radius: 6px;
        font-size: 1rem;
    }
    
    .navbar .dropdown-toggle::after {
        margin-left: 10px;
    }
    
    /* Mobile navigation container */
    .navbar-collapse {
        background-color: rgba(248, 248, 248, 0.98) !important;
        backdrop-filter: blur(10px);
        border-radius: 15px !important;
        margin-top: 15px !important;
        padding: 20px !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(203, 124, 87, 0.2);
    }
    
    .nav-link {
        padding: 12px 15px !important;
        margin: 5px 0;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-size: 1.1rem;
    }
    
    .nav-link:hover {
        background-color: rgba(203, 124, 87, 0.1);
        transform: translateX(5px);
    }
    
    /* Close button styling */
    .navbar-toggler[aria-expanded="true"] {
        background-color: var(--primary-color);
    }
    
    .navbar-toggler[aria-expanded="true"] .navbar-close-icon {
        color: white;
    }
}

/* Hero Section Styles */
.hero-section {
    padding: 4rem 0;
    display: block;
    align-items: center;
    min-height: 100vh;
}

.hero-container {
    background-color: #A3B18A;
    border-radius: 10px;
    padding: 4rem;
    margin: 0 auto;
    max-width: 1200px;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-content {
    flex: 1;
    text-align: left;
    max-width: 50%;
}

.hero-logo {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo img {
    max-width: 400px;
    animation: rotate 10s linear infinite;
}

.hero-section .purpose-red {
    color: var(--red-color);
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-section h1 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    /* font-family: 'Paytone One', sans-serif; */
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--black-color);
}

.hero-section p {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--green-color);
}

@media (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 2rem;
    }
    
    .hero-logo img {
        max-width: 200px;
    }
}

.buttons {
    margin-top: 2rem;
}

.hero-section .buttons {
    text-align: left;
}

@media (max-width: 768px) {
    .hero-section .buttons {
        text-align: center;
    }
}

.btn {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    margin: 0 0.5rem;
    border-radius: 5px;
}

.btn-primary {
    background-color: var(--red-color);
    border-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #b56e4c;
    border-color: #b56e4c;
}

.btn-outline {
    color: var(--green-color);
    border: 2px solid var(--light-green-color);
    background-color: transparent;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, var(--green-color));
    transition: height 0.3s ease;
    z-index: -1;
}

.btn-outline:hover {
    color: white;
}

.btn-outline:hover::before {
    height: 100%;
}

/* Beyond Section Styles */
.beyond-section {
    padding: 3rem 0;
    text-align: center;
}

.beyond-section h2 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--black-color);
}

.beyond-section .primary-color {
    color: var(--primary-color);
}

.beyond-container {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 3rem;
    margin: 0 auto;
    max-width: 1000px;
    text-align: left;
}

.beyond-container p {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    text-transform: capitalize;
    margin-bottom: 1.5rem;
}

.beyond-container p:last-child {
    margin-bottom: 0;
}

/* Values Section Styles */
.values-section {
    padding: 3rem 0;
}

.values-section h2 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--black-color);
    text-align: left;
}

.values-section .primary-color {
    color: var(--primary-color);
}

.values-container {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
}

.value-item {
    flex: 1;
    display: flex;
    align-items: center;
    background-color: var(--value-bg-color);
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 60px;
    height: 60px;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.value-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.value-text {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1rem;
    color: var(--dark-color);
    text-align: left;
}

/* How We Do It Section Styles */
.how-section {
    padding: 3rem 0;
    text-align: center;
}

.how-section h2 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--black-color);
}

.how-section .primary-color {
    color: var(--primary-color);
}

.how-container {
    background-color: var(--value-bg-color);
    border-radius: 10px;
    padding: 3rem;
    margin: 0 auto 2rem;
    max-width: 1000px;
    text-align: left;
}

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

.how-list li {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 2rem;
}

.how-list li::before {
    content: '⦿';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.how-list li:last-child {
    margin-bottom: 0;
}

.how-section .buttons {
    text-align: center;
}

/* Features Section Styles */
.features-section {
    padding: 3rem 0;
}

.feature-row {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    gap: 3rem;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-content {
    flex: 1;
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 2.5rem;
}

.feature-content h3 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-content p {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--dark-color);
}

.feature-content p ul {
    margin: 1.5rem 0 0 0;
    padding-left: 0;
    list-style: none;
}

.feature-content p ul li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--green-color);
}

.feature-content p ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: bold;
}

.feature-content p ul li:last-child {
    margin-bottom: 0;
}

.feature-image {
    flex: 1;
    background-color: var(--light-color);
    border-radius: 10px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {
    .values-container {
        flex-direction: column;
    }
    
    .value-item {
        flex-direction: column;
        text-align: center;
    }
    
    .value-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
    }
    
    .feature-image {
        height: 250px;
    }
}

/* Image Cards Section Styles */
.image-cards-section {
    padding: 3rem 0;
    text-align: center;
}

.image-cards-section h2 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    margin-bottom: 3rem;
    color: var(--black-color);
}

.image-cards-section .primary-color {
    color: var(--primary-color);
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card-large {
    grid-column: 1 / -1;
}

.image-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-large .image-card {
    height: 400px;
}

.card-content {
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
    padding: 2rem;
    width: 100%;
    text-align: left;
}

.card-subtitle {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    color: #A3B18A;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-title {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.8rem;
    color: var(--white-color);
    margin-bottom: 1rem;
    font-weight: 500;
}

.card-btn {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background-color: var(--primary-color);
    color: var(--white-color);
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.card-btn:hover {
    background-color: #b56e4c;
    color: var(--white-color);
    text-decoration: none;
}

@media (max-width: 768px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .card-large {
        grid-column: 1;
    }
    
    .image-card {
        height: 250px;
    }
    
    .card-large .image-card {
        height: 300px;
    }
}

/* Movement Section Styles */
.movement-section {
    padding: 3rem 0;
    text-align: center;
}

.movement-section h2 {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--black-color);
}

.movement-container {
    background-color: var(--white-color);
    border-radius: 10px;
    padding: 3rem;
    margin: 0 auto;
    max-width: 1000px;
    text-align: left;
}

.movement-container p {
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--green-color);
    margin: 0;
}



/* Footer Styles */
footer {
    background: #c8d3b4;
    color: #2C3E50;    
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(203, 124, 87, 0.1) 0%, transparent 50%);
    opacity: 0.8;
    pointer-events: none;
    z-index: 0;
}

/* Back to top button */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: none;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    z-index: 999;
}

.back-to-top.show {
    display: flex;
    opacity: 0.8;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 0.8; transform: translateY(0); }
}

.back-to-top:hover {
    opacity: 1;
    color: white;
}

.back-to-top:hover i {
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

footer .logo {
    max-height: 60px;
    margin-bottom: 1rem;
}

footer .footer-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    position: relative;
    z-index: 2;
}

footer .right-links {
    padding-top: 60px; /* Align with first column links */
}

footer .social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: flex-end;
}

footer .footer-links li,
footer .footer-links div {
    margin-bottom: 0.5rem;
}

footer .footer-links a {
    color: #2C3E50;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

footer .footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(203, 124, 87, 0.5);
}

footer .social-heading {
    font-family: 'Minion Pro', serif;
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: #3d3d3d;
    text-align: right;
}

footer .social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

footer .social-icons a {
    color: #3d3d3d;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

footer .social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(20, 0, 0, 0.959);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 1.2rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

footer .social-icons a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

footer .social-icons a:hover::before {
    transform: translateX(100%);
}

footer .social-icons a:hover {
    transform: translateY(-8px) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

footer .social-icons a[aria-label="Facebook"]:hover {
    background: linear-gradient(135deg, #1877f2, #42a5f5);
    color: white;
    border-color: #1877f2;
    box-shadow: 0 15px 35px rgba(24, 119, 242, 0.4);
}

footer .social-icons a[aria-label="Instagram"]:hover {
    background: linear-gradient(135deg, #e1306c, #fd1d1d, #fcb045);
    color: white;
    border-color: #e1306c;
    box-shadow: 0 15px 35px rgba(225, 48, 108, 0.4);
}

footer .social-icons a[aria-label="LinkedIn"]:hover {
    background: linear-gradient(135deg, #0077b5, #00a0dc);
    color: white;
    border-color: #0077b5;
    box-shadow: 0 15px 35px rgba(0, 119, 181, 0.4);
}

footer .social-icons a[aria-label="X"]:hover {
    background: linear-gradient(135deg, #000000, #1da1f2);
    color: white;
    border-color: #000000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

footer .footer-divider {
    border: none;
    height: 1px;
    background-color: rgba(203, 124, 87, 0.3);
    margin: 2rem 0 1rem;
}

footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

footer .footer-bottom .logo {
    max-height: 40px;
}

footer .copyright {
    font-size: 0.9rem;
    font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark-color);
    margin: 0;
    text-align: right;
}

@media (max-width: 768px) {
    footer .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    footer .copyright {
        text-align: center;
    }
}

footer .copyright::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

footer .copyright p {
    margin: 0;
    color: #2c3e50;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

footer .copyright a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 2px 6px;
    border-radius: 4px;
}

footer .copyright a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), rgba(203, 124, 87, 0.8));
    transition: width 0.3s ease;
    border-radius: 4px;
    z-index: -1;
}

footer .copyright a:hover {
    color: white;
    text-decoration: none;
    transform: translateY(-1px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

footer .copyright a:hover::before {
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    /* Mobile navbar styles are handled in the Mobile dropdown adjustments section above */
    
    .hero-section h1 {
        font-size: 2.8rem;
    }
    
    body.fixed-header-active {
        padding-top: 76px;
    }
    
    .vision-card {
        margin-bottom: 2rem;
    }
    
    .cta-section h4 {
        display: block;
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .process-timeline::before {
        left: 30px;
    }
    
    .process-number {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-right: 1.5rem;
    }
    
    .benefits-section h2 {
        font-size: 2rem;
    }
}

/* How It Works Page Styles */
.how-it-works-hero {
    padding: 8rem 0 5rem;
    background-color: var(--white-color);
}

.how-it-works-hero h1 {
    font-family: 'Paytone One', sans-serif;
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.how-it-works-hero .lead {
    font-family: 'Minion Pro', serif;
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.how-it-works-hero img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-it-works-hero img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

/* Process Section Styles */
.process-section {
    padding: 5rem 0;
    background-color: var(--light-color);
}

.process-section h2 {
    font-family: 'Paytone One', sans-serif;
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    height: 100%;
    width: 4px;
    background-color: var(--primary-color);
    left: 50px;
    top: 0;
    opacity: 0.3;
}

.process-step {
    display: flex;
    margin-bottom: 3rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Paytone One', sans-serif;
    font-size: 1.5rem;
    margin-right: 2rem;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(203, 124, 87, 0.3);
}

.process-content {
    padding-top: 0.5rem;
}

.process-content h3 {
    font-family: 'Paytone One', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.process-content p {
    font-family: 'Minion Pro', serif;
    color: var(--dark-color);
    font-size: 1.1rem;
}

/* Benefits Section Styles */
.benefits-section {
    padding: 5rem 0;
    background-color: var(--white-color);
}

.benefits-section h2 {
    font-family: 'Paytone One', sans-serif;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.benefits-section img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
    object-fit: cover;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.benefits-list i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.benefits-list h4 {
    font-family: 'Paytone One', sans-serif;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.benefits-list p {
    font-family: 'Minion Pro', serif;
    color: var(--dark-color);
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* CTA Banner Styles */
.cta-banner {
    padding: 4rem 0;
    background-color: var(--primary-color);
    color: white;
    margin-top: 3rem;
}

.cta-banner h2 {
    font-family: 'Paytone One', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-family: 'Minion Pro', serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner .btn-outline {
    border-color: white;
    color: white;
}

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

.cta-banner .btn-outline::before {
    background: linear-gradient(to top, white, white);
}

/* For smaller mobile devices */
@media (max-width: 576px) {
    .navbar-brand img.logo {
        max-height: 40px;
    }
    
    .hero-section {
        padding: 5rem 0;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .btn {
        display: block;
        width: 100%;
        margin: 0.5rem 0;
    }
    
    .how-it-works-hero h1 {
        font-size: 2.5rem;
    }
    
    .how-it-works-hero .lead {
        font-size: 1.1rem;
    }
    
    .process-step {
        margin-bottom: 2rem;
    }
    
    .process-content h3 {
        font-size: 1.2rem;
    }
    
    .process-content p {
        font-size: 1rem;
    }
    
    .cta-banner h2 {
        font-size: 2rem;
    }
    
    .cta-banner p {
        font-size: 1.1rem;
    }
}