* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Assistant', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #5A4F47;
    background-color: #F5F0EC;
}

.container {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
header {
    background: transparent;
    padding: 10px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

header.scrolled {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0));
    backdrop-filter: blur(15px) saturate(120%);
    -webkit-backdrop-filter: blur(15px) saturate(120%);
    box-shadow: none;
    border-bottom: none;
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    position: relative;
}

.header-logo {
    height: 130px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    margin-right: 0;
    margin-left: 20px;
    position: relative;
    top: -10px;
}

.logo-container:hover .header-logo {
    transform: scale(1.05);
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 30px;
    flex: 1;
    justify-content: flex-start;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
    overflow: visible;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-left: 15px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: transparent;
    color: #5A4F47;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #5A4F47;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
}

.social-icon:hover {
    background: #C4A869;
    color: white;
    transform: scale(1.1);
    border-color: #C4A869;
}

.whatsapp-icon {
    position: relative;
}

.whatsapp-icon::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 20px;
    height: 20px;
    border: 2.5px solid currentColor;
    border-radius: 50%;
    border-bottom-left-radius: 4px;
}

.whatsapp-icon::after {
    content: "";
    position: absolute;
    top: 24px;
    left: 12px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid currentColor;
    transform: rotate(45deg);
}

.logo {
    display: flex;
    align-items: center;
}

.logo-container {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.puzzle-logo-img {
    animation: subtle-float 3s ease-in-out infinite;
    display: block;
    transition: all 0.3s ease;
    filter: brightness(0) saturate(100%) invert(30%) sepia(10%) saturate(500%) hue-rotate(314deg) brightness(95%) contrast(90%);
}

@keyframes subtle-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.logo-container:hover .puzzle-logo-img {
    filter: brightness(0) saturate(100%) invert(88%) sepia(15%) saturate(484%) hue-rotate(314deg) brightness(97%) contrast(92%) !important;
    transform: scale(1.05);
}

.logo-initials {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 700;
    fill: #5A4F47;
    letter-spacing: 1.5px;
    transition: fill 0.3s ease;
}

.logo-container:hover .logo-initials {
    fill: #C4A869;
}

.logo-text-vertical {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
    align-items: center;
    text-align: center;
}

.logo-name {
    font-family: 'Rubik', sans-serif;
    font-size: 17px;
    font-weight: 500;
    color: #5A4F47;
    letter-spacing: 0.3px;
}

.logo-subtitle {
    font-family: 'Lato', sans-serif;
    font-size: 11px;
    font-weight: 300;
    color: #8B7E74;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0 auto;
}

.nav-links a {
    font-family: 'Assistant', sans-serif;
    text-decoration: none;
    color: #2C2C2C;
    font-weight: 400;
    font-size: 18px;
    transition: transform 0.2s ease;
    display: inline-block;
}

.nav-links a:hover {
    transform: scale(1.1);
}

/* Hamburger Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #5A4F47;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.cta-button {
    font-family: 'Assistant', sans-serif;
    background: linear-gradient(135deg, #7a3d9e 0%, #9b5cc0 100%);
    color: #FFFFFF;
    padding: 10px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 6px 15px rgba(122, 61, 158, 0.3);
    opacity: 0;
    transform: translateX(50px) scale(0.8);
}

.cta-button.animate-in {
    animation: buttonSlideIn 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes buttonSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.cta-button:hover {
    background: linear-gradient(135deg, #8f4fb8 0%, #b06fd9 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(122, 61, 158, 0.45);
}

/* Nav button override */
.nav-right .cta-button,
.nav-left .cta-button {
    padding: 10px 30px;
    font-size: 16px;
    border-radius: 25px;
    box-shadow: 0 4px 12px rgba(122, 61, 158, 0.25);
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: none;
    background: linear-gradient(135deg, #7a3d9e 0%, #9b5cc0 100%);
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.nav-right .cta-button:hover,
.nav-left .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(122, 61, 158, 0.4);
    background: linear-gradient(135deg, #8f4fb8 0%, #b06fd9 100%);
    color: #FFFFFF;
}

/* Hero Section */
.hero {
    background: #F5F0EC;
    padding: 120px 0 0 0;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-text {
    text-align: right;
}

.hero h1 {
    font-family: 'Heebo', sans-serif;
    font-size: 59px;
    color: #2C2C2C;
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: 0px;
}

.hero-title-line1 {
    font-weight: 400;
    color: #2C2C2C;
}

.hero-title-line2 {
    font-weight: 400;
    color: #2C2C2C;
}

.hero-title-line3 {
    font-weight: 400;
    color: #2C2C2C;
}

.hero-description {
    font-family: 'Assistant', sans-serif;
    font-size: 19px;
    color: #5A4F47;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-image {
    position: relative;
    height: auto;
    width: 100%;
    max-width: 500px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 15px 35px rgba(0,0,0,0.08));
}

.hero-cta {
    margin-top: 30px;
}

.hero-cta .cta-button {
    background: linear-gradient(135deg, #7a3d9e 0%, #9b5cc0 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 15px rgba(122, 61, 158, 0.3);
}

.hero-cta .cta-button:hover {
    background: linear-gradient(135deg, #8f4fb8 0%, #b06fd9 100%);
    box-shadow: 0 10px 25px rgba(122, 61, 158, 0.45);
    color: #FFFFFF;
}

/* Value Statement Section */
.value-statement {
    background: linear-gradient(rgba(230, 215, 200, 0.65), rgba(230, 215, 200, 0.65)), url('texture-2024-12-19-20-02-29-utc.jpg');
    background-size: cover;
    background-position: center;
    padding: 60px 0 70px 0;
}

.value-statement-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.value-statement-right {
    text-align: right;
}

.value-statement-right h2 {
    font-family: 'Cormorant Garamond', 'Playfair Display', serif;
    font-size: 52px;
    color: #2C2C2C;
    line-height: 1.3;
    font-weight: 600;
    letter-spacing: -0.5px;
    margin: 0;
}

.value-statement-left {
    text-align: right;
    padding-right: 40px;
}

.value-statement-left p {
    font-family: 'Assistant', sans-serif;
    font-size: 19px;
    color: #2C2C2C;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
}

/* Marketing Education Section */
.marketing-education {
    margin-top: 50px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.education-section {
    margin-bottom: 40px;
    text-align: center;
}

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

.education-section h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 42px;
    color: #44105a;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.education-section p {
    font-family: 'Assistant', sans-serif;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 10px;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
}

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

/* About Section */
.about-section {
    background: #F5F0EC;
    padding: 80px 0;
    position: relative;
}

.about-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto 40px;
}

.about-card {
    background: #E8E4DF;
    border-radius: 20px;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-card h3 {
    font-family: 'Heebo', sans-serif;
    font-size: 26px;
    color: #44105a;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.about-list li {
    font-family: 'Assistant', sans-serif;
    font-size: 18px;
    color: #5A4F47;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 18px;
    padding-right: 25px;
    position: relative;
}

.about-list li:before {
    content: "✓";
    position: absolute;
    right: 0;
    color: #7a3d9e;
    font-weight: 600;
    font-size: 20px;
}

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

.about-card-text {
    font-family: 'Assistant', sans-serif;
    font-size: 17px;
    color: #5A4F47;
    font-weight: 300;
    line-height: 1.7;
    text-align: right;
    margin: 0;
}

.highlight-word {
    color: #7a3d9e;
    font-weight: 700;
}

.about-card-large {
    height: auto;
}

.about-cards-small {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-card-small {
    height: auto;
}

.about-cta {
    text-align: center;
    margin-top: 80px;
    display: flex;
    gap: 80px;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta .cta-button:last-child {
    background: #FFFFFF;
    color: #7a3d9e;
    border: none;
    box-shadow: 0 6px 15px rgba(122, 61, 158, 0.15);
}

.about-cta .cta-button:last-child:hover {
    background: linear-gradient(135deg, #f3e5ff 0%, #e5d5f5 100%);
    color: #5a1a75;
    box-shadow: 0 10px 25px rgba(122, 61, 158, 0.25);
    transform: translateY(-3px);
}

/* How I Can Help Section - OLD (can be removed later) */
.how-i-help {
    background: #F5F0EC;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.help-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.help-image {
    position: relative;
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.help-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.help-text {
    text-align: right;
}

.help-text h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 42px;
    color: #C4A869;
    margin-bottom: 30px;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: 0px;
}

.help-text p {
    font-family: 'Assistant', sans-serif;
    font-size: 19px;
    color: #5A4F47;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.7;
    padding-left: 25px;
    text-indent: -25px;
}

.help-text strong {
    font-weight: 600;
    color: #C4A869;
}

.check-icon {
    color: #C4A869;
    font-weight: 700;
    margin-left: 5px;
}

.help-cta {
    margin-top: 35px;
}

/* Services Section */
.services {
    background: #FFFFFF;
    padding: 100px 0;
}

.services h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 42px;
    color: #5A4F47;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
}

.service-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    border-radius: 8px;
    padding: 8px;
    border: 2px solid #D9C7BE;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FAFAFA;
    position: relative;
}

.service-image::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: linear-gradient(135deg, rgba(217, 199, 190, 0.15) 0%, rgba(196, 168, 105, 0.15) 100%);
    border-radius: 5px;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.service-card:hover .service-image::before {
    opacity: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: all 0.4s ease;
    border-radius: 5px;
    opacity: 0.85;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
    opacity: 1;
}

.service-content {
    padding: 25px 0 0 0;
    text-align: center;
}

.service-content h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 24px;
    color: #8B7E74;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: -0.5px;
}

.service-content p {
    font-family: 'Assistant', sans-serif;
    font-size: 19px;
    color: #5A4F47;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 15px;
}

.service-content .cta-button {
    margin-top: 20px;
    transform: translateY(-40px) scale(0.8);
}

.service-content .cta-button.animate-in {
    animation: buttonSlideDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes buttonSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-40px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #D9C7BE 0%, #C4A869 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-section h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 48px;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0px;
}

.cta-subtitle {
    font-family: 'Assistant', sans-serif;
    font-size: 22px;
    color: #FFFFFF;
    font-weight: 300;
    margin-bottom: 50px;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.benefit-icon {
    font-size: 32px;
    color: #FFFFFF;
    font-weight: 700;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-benefit p {
    font-family: 'Assistant', sans-serif;
    font-size: 18px;
    color: #FFFFFF;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
}

.cta-large {
    font-size: 20px;
    padding: 15px 50px;
    background: #FFFFFF;
    color: #5A4F47;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cta-large:hover {
    background: #F5F0EC;
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

/* Blog Section */
.blog {
    background: #FFFFFF;
    padding: 80px 0;
}

.blog h2 {
    font-family: 'Heebo', sans-serif;
    font-size: 42px;
    color: #5A4F47;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 600;
    letter-spacing: 0px;
}

.blog-intro {
    font-family: 'Assistant', sans-serif;
    font-weight: 300;
    font-size: 18px;
    color: #5A4F47;
    text-align: center;
    margin-bottom: 50px;
    opacity: 0.85;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.blog-post {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    border: none;
    transition: transform 0.3s ease;
}

.blog-post:hover {
    transform: translateY(-3px);
}

.blog-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post:hover .blog-image img {
    transform: scale(1.05);
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #D9C7BE, #C4A869);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: white;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    font-family: 'Assistant', sans-serif;
    font-size: 14px;
    color: #C4A869;
    font-weight: 400;
    margin-bottom: 10px;
    display: block;
}

.blog-post h3 {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    color: #5A4F47;
    margin-bottom: 15px;
    font-weight: 500;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.blog-post p {
    font-family: 'Assistant', sans-serif;
    font-weight: 300;
    color: #5A4F47;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.8;
}

.read-more {
    font-family: 'Assistant', sans-serif;
    color: #C4A869;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.read-more:hover {
    color: #B39858;
}

.blog-cta {
    text-align: center;
}



/* Contact Section */
.contact {
    background: linear-gradient(rgba(245, 240, 236, 0.7), rgba(240, 235, 230, 0.7)), url('foto cellular .jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 100px 0;
    position: relative;
}

.contact .container {
    position: relative;
    z-index: 1;
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h2 {
    font-family: 'Assistant', sans-serif;
    font-size: 28px;
    color: #5A4F47;
    margin-bottom: 15px;
    font-weight: 300;
    line-height: 1.6;
}

.contact-form {
    max-width: 1200px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 10px;
}

.form-group {
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(90, 79, 71, 0.15);
    border-radius: 30px;
    font-family: 'Assistant', sans-serif;
    font-size: 16px;
    color: #5A4F47;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    direction: rtl;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(90, 79, 71, 0.5);
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #C4A869;
    background: rgba(255, 255, 255, 0.95);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    border-radius: 20px;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
    direction: rtl;
}

.form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

.form-checkbox label {
    color: #5A4F47;
    font-family: 'Assistant', sans-serif;
    font-size: 14px;
    font-weight: 300;
}

.form-checkbox label a {
    color: #C4A869;
    text-decoration: underline;
}

.form-submit {
    background: #8B7E74;
    color: white;
    border: none;
    padding: 8px 35px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Assistant', sans-serif;
    display: block;
    margin: 20px auto 0;
}

.form-submit:hover {
    background: #A8A8A8;
    transform: translateY(-2px);
}


/* Footer */
footer {
    background: #5A4F47;
    color: white;
    text-align: center;
    padding: 20px 0;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    background: none;
    align-items: center;
}

.footer-links a {
    color: #D9C7BE;
    text-decoration: none;
    font-family: 'Assistant', sans-serif;
    font-size: 19px;
    font-weight: 300;
    transition: color 0.3s ease;
}

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

.footer-icon {
    color: white;
    transition: color 0.3s;
}

.footer-icon[title="WhatsApp"] {
    position: relative;
    top: -2px;
}

.footer-icon:hover {
    color: #E8C4BC;
}

/* Responsive Design */
@media (max-width: 1024px) {
    /* Guide sections - stack vertically in mobile */
    .guide-section {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .guide-title {
        margin-top: 0 !important;
    }

    /* Header spacing on mobile */
    header {
        padding: 15px 15px;
    }

    .header-wrapper {
        padding: 0 15px !important;
        max-width: 100% !important;
    }

    .header-logo {
        height: 90px;
    }

    /* Hamburger Menu Mobile - RIGHT */
    .hamburger-menu {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 100;
    }

    nav {
        position: relative;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        padding: 0 !important;
        min-height: 70px;
    }

    /* Logo mobile - move to LEFT */
    .nav-right {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        margin: 0 !important;
        padding: 0 !important;
    }

    .logo-container {
        margin: 0 !important;
        padding: 0 !important;
        top: 0 !important;
    }

    /* Hide CTA button in mobile */
    .nav-left .cta-button {
        display: none !important;
    }

    .nav-left {
        order: 3;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-left.active {
        max-height: 300px;
        padding: 10px 0;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
        padding: 12px 20px;
        font-size: 16px;
    }

    .social-icons {
        margin-left: 10px;
        gap: 10px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 14px;
        border: 1.5px solid #5A4F47;
    }

    .hero h1 {
        font-size: 32px;
        max-width: 100%;
        padding: 0 5px;
        word-spacing: -4px;
        letter-spacing: -0.8px;
    }

    .hero-description {
        font-size: 15px;
        max-width: 95%;
        padding: 0 5px;
        line-height: 1.5;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 5px;
    }

    .hero .container {
        padding: 0 10px !important;
        max-width: 100% !important;
    }

    .hero-content {
        padding: 0 5px;
    }

    .hero-content,
    .help-content,
    .blog-grid,
    .about-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-card-large,
    .about-card-small {
        min-height: 200px;
    }

    .about-section .container {
        padding: 0 10px !important;
        max-width: 100% !important;
    }

    .about-cards-grid {
        max-width: 100% !important;
        padding: 0 5px;
    }

    .about-list li {
        font-size: 20px !important;
    }

    .about-card-text {
        font-size: 20px !important;
    }

    .about-cta {
        gap: 20px !important;
    }

    .hero-text {
        text-align: center;
    }

    .hero-image {
        order: -1;
        height: 240px;
        margin-top: 0;
        padding-top: 60px;
    }

    .hero-image img {
        object-position: center bottom;
        transform: translateY(80px) scale(0.85);
    }

    .hero-text {
        margin-top: 50px;
    }

    .hero-cta {
        margin-bottom: 60px;
    }

    /* Value Statement Mobile */
    .value-statement {
        padding: 40px 0 70px 0;
    }

    .value-statement h2 {
        font-size: 28px;
    }

    .education-section h3 {
        font-size: 26px;
        line-height: 1.3;
        word-spacing: -2px;
    }

    .education-section p {
        font-size: 20px !important;
    }

    .value-statement p {
        font-size: 16px;
    }

    .value-statement .container {
        padding: 0 15px !important;
    }

    .value-statement-content {
        padding: 0 10px;
    }

    /* How I Help Mobile */
    .help-image {
        height: 300px;
    }

    .help-text {
        text-align: center;
    }

    .help-text h2 {
        font-size: 32px;
    }

    .help-text p {
        font-size: 16px;
    }

    /* Services Mobile */
    .services h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-methods {
        flex-direction: column;
        gap: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-text {
        text-align: center;
        padding-right: 0;
        order: 2;
    }

    .contact-form {
        padding: 25px;
        order: 1;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-method {
        justify-content: center;
    }

    .contact-message-section {
        text-align: center;
    }

    .contact-icons {
        justify-content: center;
    }

    /* CTA Section Mobile */
    .cta-section h2 {
        font-size: 32px;
    }

    .cta-subtitle {
        font-size: 18px;
    }

    .cta-benefits {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Visually Hidden (for screen readers only) */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip Navigation */
.skip-link {
    position: absolute;
    top: -1000px;
    left: 0;
    background: #2D4235;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 9999;
    font-family: 'Assistant', sans-serif;
    font-weight: 500;
    opacity: 0;
    pointer-events: none;
}

.skip-link:focus {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
    pointer-events: auto;
}

/* Success Message */
.success-message {
    background: #C4A869;
    border-radius: 25px;
    padding: 40px;
    text-align: center;
    margin: 0;
    display: none;
    box-shadow: 0 10px 30px rgba(196, 168, 105, 0.3);
}

.success-message.show {
    display: block;
    animation: fadeIn 0.5s ease-in;
}

.success-message h3 {
    font-family: 'Rubik', sans-serif;
    color: #FFFFFF;
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: 400;
    letter-spacing: -0.5px;
}

.success-message p {
    font-family: 'Assistant', sans-serif;
    color: #FFFFFF;
    font-size: 17px;
    margin: 0;
    opacity: 0.9;
    font-weight: 300;
    line-height: 1.6;
}

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

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 35px;
    height: 35px;
    fill: white;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.whatsapp-float {
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    animation: none;
}
