/* MAIN STYLESHEET - LIFESTYLE & SELF-DEVELOPMENT TEMPLATE
   Created: April 2025
   Version: 1.0
*/

/* ROOT VARIABLES - COLOR PALETTE */
:root {
    /* Primary Colors - Pastel Palette */
    --primary-1: #ffe3e4; /* Soft Peach */
    --primary-2: #d7ffee; /* Mint #00960b */
    --primary-3: #ffffff; /* Lavender */
    --primary-4: #ececec; /* Sky #3525ff */
    --primary-5: #ffffff; /* Cream */
    
    /* Darker Shades */
    --primary-1-dark: #ff8a8d;
    --primary-2-dark: #85c98c;
    --primary-3-dark: #f5d9ff;
    --primary-4-dark: #ffffff;
    --primary-5-dark: #fff5b8;
    
    /* Lighter Shades */
    --primary-1-light: #f0f0f0;
    --primary-2-light: #c7ffda;
    --primary-3-light: #f9f2fa;
    --primary-4-light: #f3fafd;
    --primary-5-light: #fffcf2;
    
    /* Neutral Colors */
    --dark: #5e5d5e;
    --medium: #616161;
    --light: #f7f7f7;
    --white: #ffffff;
    
    /* Typography */
    --body-font: 'Poppins', sans-serif;
    --heading-font: 'Montserrat', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 50%;
    
    /* Transitions */
    --transition-quick: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --transition-slow: all 0.8s ease;
}

/* GLOBAL RESET & BASE STYLES */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    line-height: 1.3;
    margin-bottom: var(--spacing-sm);
    font-weight: 700;
}

h1 {
    font-size: 4.2rem;
}

h2 {
    font-size: 3.6rem;
}

h3 {
    font-size: 3rem;
}

h4 {
    font-size: 2.4rem;
}

h5 {
    font-size: 2rem;
}

h6 {
    font-size: 1.8rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

a {
    color: var(--primary-3-dark);
    text-decoration: none;
    transition: var(--transition-quick);
}

a:hover {
    color: var(--primary-3);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style-position: inside;
    margin-bottom: var(--spacing-sm);
}

/* UTILITY CLASSES */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.mb-1 {
    margin-bottom: var(--spacing-xs);
}

.mb-2 {
    margin-bottom: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

.mb-4 {
    margin-bottom: var(--spacing-lg);
}

.mb-5 {
    margin-bottom: var(--spacing-xl);
}

.mt-1 {
    margin-top: var(--spacing-xs);
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mt-3 {
    margin-top: var(--spacing-md);
}

.mt-4 {
    margin-top: var(--spacing-lg);
}

.mt-5 {
    margin-top: var(--spacing-xl);
}

.pb-1 {
    padding-bottom: var(--spacing-xs);
}

.pb-2 {
    padding-bottom: var(--spacing-sm);
}

.pb-3 {
    padding-bottom: var(--spacing-md);
}

.pb-4 {
    padding-bottom: var(--spacing-lg);
}

.pb-5 {
    padding-bottom: var(--spacing-xl);
}

.pt-1 {
    padding-top: var(--spacing-xs);
}

.pt-2 {
    padding-top: var(--spacing-sm);
}

.pt-3 {
    padding-top: var(--spacing-md);
}

.pt-4 {
    padding-top: var(--spacing-lg);
}

.pt-5 {
    padding-top: var(--spacing-xl);
}

.py-1 {
    padding-top: var(--spacing-xs);
    padding-bottom: var(--spacing-xs);
}

.py-2 {
    padding-top: var(--spacing-sm);
    padding-bottom: var(--spacing-sm);
}

.py-3 {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}

.py-4 {
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}

.py-5 {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-xl);
}

.px-1 {
    padding-left: var(--spacing-xs);
    padding-right: var(--spacing-xs);
}

.px-2 {
    padding-left: var(--spacing-sm);
    padding-right: var(--spacing-sm);
}

.px-3 {
    padding-left: var(--spacing-md);
    padding-right: var(--spacing-md);
}

.px-4 {
    padding-left: var(--spacing-lg);
    padding-right: var(--spacing-lg);
}

.px-5 {
    padding-left: var(--spacing-xl);
    padding-right: var(--spacing-xl);
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

.bg-light {
    background-color: var(--light);
}

.bg-primary-1 {
    background-color: var(--primary-1);
}

.bg-primary-2 {
    background-color: var(--primary-2);
}

.bg-primary-3 {
    background-color: var(--primary-3);
}

.bg-primary-4 {
    background-color: var(--primary-4);
}

.bg-primary-5 {
    background-color: var(--primary-5);
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    transition: var(--transition-quick);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-3-dark);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-3);
    color: var(--dark);
}

.btn-secondary {
    background-color: var(--primary-1-dark);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--primary-1);
    color: var(--dark);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary-3-dark);
    color: var(--primary-3-dark);
}

.btn-outline:hover {
    background-color: var(--primary-3-dark);
    color: var(--white);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: var(--transition-medium);
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.scrolled {
    padding: 1.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    flex: 0 0 auto;
}

.nav-wrapper {
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    flex-direction: row;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin: 0 1.5rem;
}

.nav-link {
    font-weight: 600;
    color: var(--dark);
    position: relative;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-3-dark);
    transition: var(--transition-quick);
}

.nav-link:hover:after,
.nav-link.active:after {
    width: 100%;
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: var(--transition-quick);
}

/* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-slide:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
    z-index: 1;
}

.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 700px;
}

.hero-subtitle {
    font-size: 2rem;
    color: var(--primary-2-light);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 5rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.hero-desc {
    font-size: 1.8rem;
    margin-bottom: 3rem;
}

/* Static Hero Section */
.static-hero {
    position: relative;
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

.static-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: -1;
}

.static-hero .hero-content {
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

.static-hero .hero-subtitle {
    color: #6286ff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeInLeft 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

.static-hero .hero-title {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInLeft 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

.static-hero .hero-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    animation: fadeInLeft 0.8s ease-out 0.9s forwards;
    opacity: 0;
}

.static-hero .hero-buttons {
    animation: fadeInUp 0.8s ease-out 1.2s forwards;
    opacity: 0;
}

.static-hero .hero-buttons .btn {
    margin-right: 15px;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.static-hero .hero-buttons .btn-primary {
    background-color: #88ccff;
    border-color: #92c1cb;
}

.static-hero .hero-buttons .btn-primary:hover {
    background-color: #2677da;
    border-color: #006def;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.static-hero .hero-buttons .btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.static-hero .hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.6s forwards;
    opacity: 0;
    transform: translateX(50px);
}

.static-hero .hero-image img {
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
}

.static-hero .hero-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Styles */
@media (max-width: 1199px) {
    .static-hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991px) {
    .static-hero {
        height: auto;
        min-height: 90vh;
    }
    
    .static-hero .hero-title {
        font-size: 2.5rem;
    }
    
    .static-hero .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .static-hero .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .static-hero {
        padding: 80px 0;
    }
    
    .static-hero .hero-title {
        font-size: 2rem;
    }
    
    .static-hero .hero-subtitle {
        font-size: 1rem;
    }
    
    .static-hero .hero-desc {
        font-size: 1rem;
    }
    
    .static-hero .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
        margin: 5px;
    }
}

/* ABOUT SECTION */
.about {
    position: relative;
    overflow: hidden;
}

.about-content {
    position: relative;
    z-index: 2;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature {
    padding: 3rem;
    border-radius: var(--radius-md);
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-feature-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    color: var(--primary-3-dark);
}

.about-feature-name {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.about-feature-desc {
    font-size: 1.6rem;
    color: var(--medium);
}

/* SERVICES SECTION */
.services {
    position: relative;
}

.service-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
    margin-bottom: 30px;
    height: 100%;
    background-color: var(--white);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 3rem;
}

.service-name {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.service-price {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background-color: var(--primary-2-light);
    color: var(--dark);
    border-radius: var(--radius-sm);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-desc {
    font-size: 1.6rem;
    color: var(--medium);
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
}

.service-features li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.service-features li:before {
    content: 'â';
    position: absolute;
    left: 0;
    color: var(--primary-3-dark);
    font-weight: 700;
}

/* FEATURES SECTION */
.features {
    background-color: var(--primary-4-light);
}

.feature-card {
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
    height: 100%;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: var(--radius-round);
    background-color: var(--primary-1-light);
    color: var(--primary-1-dark);
    font-size: 3rem;
    margin-bottom: 2rem;
}

.feature-name {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.feature-desc {
    font-size: 1.6rem;
    color: var(--medium);
}

/* PRICE PLAN SECTION */
.price-plan {
    position: relative;
}

.price-card {
    position: relative;
    padding: 5rem 3rem;
    border-radius: var(--radius-lg);
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
    height: 100%;
    text-align: center;
    overflow: hidden;
}

.price-card.featured {
    border: 3px solid var(--primary-3);
}

.price-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.price-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, var(--primary-1), var(--primary-3));
}

.price-name {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.price-amount {
    font-size: 4.8rem;
    font-weight: 800;
    color: var(--primary-3-dark);
    margin-bottom: 3rem;
}

.price-amount small {
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--medium);
}

.price-desc {
    font-size: 1.6rem;
    color: var(--medium);
    margin-bottom: 3rem;
}

.price-features {
    list-style: none;
    text-align: left;
    margin-bottom: 3rem;
}

.price-features li {
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
}

.price-features li:before {
    content: 'â';
    position: absolute;
    left: 0;
    color: var(--primary-3-dark);
    font-weight: 700;
}

/* TEAM SECTION */
.team {
    background-color: var(--primary-5-light);
}

.team-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
    margin-bottom: 30px;
    background-color: var(--white);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.team-image {
    position: relative;
    overflow: hidden;
    height: 300px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-content {
    padding: 2.5rem;
    text-align: center;
}

.team-member-name {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-size: 1.6rem;
    color: var(--primary-3-dark);
    font-weight: 600;
}

/* REVIEWS SECTION */
.reviews {
    position: relative;
}

.review-card {
    padding: 3rem;
    border-radius: var(--radius-lg);
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
    height: 100%;
    position: relative;
}

.review-card:before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 2rem;
    font-size: 8rem;
    color: var(--primary-2-light);
    font-family: serif;
    line-height: 1;
    opacity: 0.5;
}

.review-text {
    font-size: 1.8rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.review-author {
    display: flex;
    align-items: center;
}

.review-author-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    overflow: hidden;
    margin-right: 1.5rem;
}

.review-author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-author-name {
    font-size: 1.8rem;
    font-weight: 700;
}

/* COREINFO SECTION */
.coreinfo {
    background-color: var(--primary-1-light);
}

.coreinfo-card {
    padding: 4rem 3rem;
    border-radius: var(--radius-lg);
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
    height: 100%;
}

.coreinfo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.coreinfo-icon {
    font-size: 4rem;
    color: var(--primary-3-dark);
    margin-bottom: 2rem;
}

.coreinfo-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.coreinfo-desc {
    font-size: 1.6rem;
    color: var(--medium);
}

/* CONTACT SECTION */
.contact {
    position: relative;
}

.contact-form {
    padding: 4rem;
    border-radius: var(--radius-lg);
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 2rem;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid #ffd7c9;
    border-radius: var(--radius-md);
    font-size: 1.6rem;
    transition: var(--transition-quick);
}

.form-control:focus {
    border-color: var(--primary-3-dark);
    outline: none;
    box-shadow: 0 0 0 3px rgba(226, 190, 255, 0.30);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-check {
    margin-bottom: 2rem;
}

.form-check-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
}

.form-check-input {
    margin-right: 1rem;
    margin-top: 0.4rem;
}

.contact-info {
    padding: 4rem;
    border-radius: var(--radius-lg);
    background-color: var(--primary-3-light);
    height: 100%;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.contact-info-icon {
    font-size: 2.4rem;
    color: var(--primary-3-dark);
    margin-right: 1.5rem;
}

.contact-info-content h4 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.contact-info-content p {
    font-size: 1.6rem;
    color: var(--medium);
}

/* BLOG SECTION */
.blog {
    position: relative;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition-medium);
    margin-bottom: 30px;
    height: 100%;
    background-color: var(--white);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 3rem;
}

.blog-title {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.blog-excerpt {
    font-size: 1.6rem;
    color: var(--medium);
    margin-bottom: 2rem;
}

.blog-link {
    font-weight: 600;
    color: var(--primary-3-dark);
    display: inline-flex;
    align-items: center;
}

.blog-link i {
    margin-left: 0.5rem;
    transition: var(--transition-quick);
}

.blog-link:hover i {
    transform: translateX(5px);
}

/* FOOTER */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 6rem 0 2rem;
}

.footer-brand {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
}

.footer-desc {
    font-size: 1.6rem;
    color: #aaaaaa;
    margin-bottom: 3rem;
}

.footer-heading {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--white);
    font-weight: 600;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links li {
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #bba5a8;
    transition: var(--transition-quick);
}

.footer-links a:hover {
    color: var(--primary-2-light);
    padding-left: 5px;
}

.footer-contact {
    font-size: 1.6rem;
    color: #928d8d;
    margin-bottom: 1.5rem;
}

.footer-contact i {
    color: var(--primary-3-light);
    margin-right: 1rem;
    font-size: 1.8rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 4rem;
}

.footer-copyright {
    font-size: 1.4rem;
    color: #e1cbce;
    text-align: center;
}

/* Shape Decorations */
.shape {
    position: absolute;
    z-index: -1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-color: var(--primary-1-light);
    top: -150px;
    right: -150px;
    opacity: 0.4;
}

.shape-2 {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background-color: var(--primary-2-light);
    bottom: -100px;
    left: -100px;
    opacity: 0.4;
}

.shape-3 {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--primary-3-light);
    top: 50%;
    left: -75px;
    opacity: 0.4;
}

.shape-4 {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background-color: var(--primary-4-light);
    bottom: -125px;
    right: 10%;
    opacity: 0.4;
} 