.elementor-1787 .elementor-element.elementor-element-7d14ece{--display:flex;--min-height:100vh;}.elementor-1787 .elementor-element.elementor-element-7d14ece:not(.elementor-motion-effects-element-type-background), .elementor-1787 .elementor-element.elementor-element-7d14ece > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-image:url("https://okfolheados.com.br/wp-content/uploads/2025/06/folheados-1.png");background-position:bottom center;background-size:cover;}.elementor-1787 .elementor-element.elementor-element-7d14ece::before{filter:brightness( 79% ) contrast( 100% ) saturate( 100% ) blur( 0.8px ) hue-rotate( 0deg );}.elementor-1787 .elementor-element.elementor-element-f0e4a22{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1787 .elementor-element.elementor-element-f0e4a22.e-con{--flex-grow:0;--flex-shrink:0;}.elementor-1787 .elementor-element.elementor-element-0166e66{--display:flex;}.elementor-1787 .elementor-element.elementor-element-8c78d54{--display:flex;}.elementor-1787 .elementor-element.elementor-element-551b58d{--display:grid;--e-con-grid-template-columns:repeat(2, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;}.elementor-1787 .elementor-element.elementor-element-8c08510{--display:flex;}.elementor-1787 .elementor-element.elementor-element-037a1d5{--display:flex;}@media(max-width:1024px){.elementor-1787 .elementor-element.elementor-element-551b58d{--grid-auto-flow:row;}}@media(min-width:768px){.elementor-1787 .elementor-element.elementor-element-7d14ece{--width:100%;}.elementor-1787 .elementor-element.elementor-element-f0e4a22{--width:100%;}.elementor-1787 .elementor-element.elementor-element-0166e66{--width:100%;}}@media(max-width:767px){.elementor-1787 .elementor-element.elementor-element-551b58d{--e-con-grid-template-columns:repeat(1, 1fr);--e-con-grid-template-rows:repeat(1, 1fr);--grid-auto-flow:row;}}/* Start custom CSS */a {
    text-decoration: none !important;
}
/* 1. Garante que a seção possa “esconder” o ::before animado */
 #hero-section{
    position: relative;
    overflow: hidden;          /* evita barras de rolagem */
    background: none;          /* transferimos a imagem para o ::before */
}

/* 2. Clona a imagem no ::before e aplica a animação */
 #hero-section::before{
    content: "";
    position: absolute;
    inset: 0;                  /* ocupa toda a seção */
    background-image: url(https://i0.wp.com/okfolheados.com.br/wp-content/uploads/2025/06/folheados-1.png?fit=1920%2C1289&ssl=1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform-origin: center;
    animation: heroKenBurns 25s ease-in-out infinite;
    will-change: transform;    /* otimiza performance */
    z-index: -1;               /* fica atrás do conteúdo */
}

/* 3. Keyframes: leve zoom (1.05 → 1.10) + pan vertical de 3 % */
@keyframes heroKenBurns{
    0%   { transform: scale(1.05) translateY(0); }
    50%  { transform: scale(1.10) translateY(-3%); }
    100% { transform: scale(1.05) translateY(0); }
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #2C2C2C;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            var(--brand-cream-10) 25%,
            rgba(255, 255, 255, 0.95) 50%,
            var(--brand-cream-08) 75%,
            rgba(255, 255, 255, 1) 100%);
    min-height: 100vh;
    position: relative;
}

/* Background effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            var(--brand-cream-15) 0%,
            var(--brand-gold-20) 25%,
            var(--brand-gold-18) 50%,
            var(--brand-cream-25) 75%,
            var(--brand-gold-15) 100%);
    background-size: 400% 400%;
    animation: cream-wave 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

/* Ensure content appears above background */
body>* {
    position: relative;
    z-index: 2;
}

/* === TYPOGRAPHY === */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.2;
}

/* === COLORS === */
:root {
    /* Brand Colors */
    --brand-gold: #d0ac5c;
    --brand-cream: #eae2b6;

    --brand-gold-rgb: 208, 172, 92;
    --brand-cream-rgb: 234, 226, 182;

    /* Neutral Colors */
    --graphite-soft: #2C2C2C;
    --gray-medium: #6B6B6B;
    --white-soft: #F8F8F8;
    --gray-light: #E0E0E0;

    /* Dynamic Brand Colors with Opacity */
    --brand-gold-05: rgba(var(--brand-gold-rgb), 0.05);
    --brand-gold-08: rgba(var(--brand-gold-rgb), 0.08);
    --brand-gold-10: rgba(var(--brand-gold-rgb), 0.1);
    --brand-gold-12: rgba(var(--brand-gold-rgb), 0.12);
    --brand-gold-15: rgba(var(--brand-gold-rgb), 0.15);
    --brand-gold-18: rgba(var(--brand-gold-rgb), 0.18);
    --brand-gold-20: rgba(var(--brand-gold-rgb), 0.2);
    --brand-gold-25: rgba(var(--brand-gold-rgb), 0.25);
    --brand-gold-30: rgba(var(--brand-gold-rgb), 0.3);
    --brand-gold-40: rgba(var(--brand-gold-rgb), 0.4);
    --brand-gold-60: rgba(var(--brand-gold-rgb), 0.6);

    --brand-cream-05: rgba(var(--brand-cream-rgb), 0.05);
    --brand-cream-06: rgba(var(--brand-cream-rgb), 0.06);
    --brand-cream-08: rgba(var(--brand-cream-rgb), 0.08);
    --brand-cream-10: rgba(var(--brand-cream-rgb), 0.1);
    --brand-cream-12: rgba(var(--brand-cream-rgb), 0.12);
    --brand-cream-15: rgba(var(--brand-cream-rgb), 0.15);
    --brand-cream-18: rgba(var(--brand-cream-rgb), 0.18);
    --brand-cream-20: rgba(var(--brand-cream-rgb), 0.2);
    --brand-cream-25: rgba(var(--brand-cream-rgb), 0.25);
    --brand-cream-30: rgba(var(--brand-cream-rgb), 0.3);

    /* Gradients */
    --gold-gradient: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-cream) 100%);
    --gold-gradient-soft: linear-gradient(135deg, var(--brand-gold-15) 0%, var(--brand-cream-12) 100%);
}

/* === LAYOUT UTILITIES === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--graphite-soft);
    margin-bottom: 24px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-medium);
    max-width: 768px;
    margin: 0 auto;
}

.highlight {
    color: var(--brand-gold);
}

/* === BUTTON STYLES === */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--brand-gold) 0%, #f4e4bc 100%);
    color: white;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 25px rgba(208, 172, 92, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    /* Removida animação de branco */
    display: none;
}



.btn-primary:hover {
    background: linear-gradient(135deg, #e6c97a 0%, var(--brand-gold) 100%);
    color: #2C2C2C;
    transform: translateY(-2px) scale(1.04);
    box-shadow:
        0 8px 32px rgba(208, 172, 92, 0.55),
        0 2px 8px rgba(0,0,0,0.08);
}

.btn-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid var(--brand-gold);
    color: var(--brand-gold);
    font-weight: 500;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-secondary:hover {
    background: var(--brand-gold-18);
    color: #2C2C2C;
    border-color: var(--brand-gold-40);
    transform: scale(1.04);
    box-shadow: 0 8px 24px var(--brand-gold-25);
}

/* === HERO SECTION === */
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
    min-height: calc(100vh - 100px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
}

#hero-grid {
    position: relative;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 80px;
}

#left-section {
    color: #2C2C2C;
    animation: fade-in 1s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: white;
    border-radius: 50px;
    padding: 10px 28px;
    margin-bottom: 40px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow:
        0 4px 20px rgba(208, 172, 92, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 30px rgba(208, 172, 92, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 215, 0, 0.5);
}

.hero-icon {
    width: 22px;
    height: 22px;
    color: var(--brand-gold);
    animation: spin-slow 8s linear infinite;
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.5));
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    color: white !important;
    margin-bottom: 32px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 30px rgba(0, 0, 0, 0.2);
    animation: text-glow 4s ease-in-out infinite;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-highlight {
    color: var(--brand-gold);
    background: linear-gradient(45deg, var(--brand-gold), var(--brand-gold-alt));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.625rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    line-height: 1.5;
    font-weight: 300;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-years {
    color: var(--brand-gold);
    font-weight: 700;
    font-size: 1.75rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-features {
    display: flex;
    gap: 40px;
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid transparent;
}

.hero-feature:hover {
    color: white;
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 4px 15px rgba(208, 172, 92, 0.3);
}

.hero-feature svg {
    width: 24px;
    height: 24px;
    color: var(--brand-gold);
    filter: drop-shadow(0 0 3px rgba(255, 215, 0, 0.4));
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.hero-buttons .btn-secondary {
    border-color: var(--brand-gold-25);
    color: var(--brand-gold);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
}

.hero-buttons .btn-secondary:hover {
    background: var(--brand-gold-08);
    color: #2C2C2C;
    border-color: var(--brand-gold-40);
}

#right-section {
    display: flex;
    flex-direction: column;
    gap: 24px;
    animation: slide-up 1s ease-out 0.3s both;
}

.hero-card {
    background: linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(20px) saturate(1.5);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, var(--brand-gold-15) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-card:hover::before {
    opacity: 1;
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.15),
        0 10px 20px rgba(208, 172, 92, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 215, 0, 0.4);
    background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
        linear-gradient(135deg,
            rgba(255, 255, 255, 0.12) 0%,
            rgba(255, 255, 255, 0.05) 100%);
}

.hero-card-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-card-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.hero-card-number {
    font-size: 2.1rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    background: linear-gradient(135deg, white 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-card-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brand-gold);
    margin-bottom: 10px;
    letter-spacing: 0.3px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-card-description {
    font-size: 0.925rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.5;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-icon {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.scroll-dot {
    width: 4px;
    height: 12px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: pulse 2s infinite;
}

/* === SERVICES SECTION === */
#services-section {
    padding: 120px 0;
    background: linear-gradient(135deg,
            var(--brand-cream-10) 0%,
            rgba(255, 255, 255, 0.8) 30%,
            var(--brand-cream-05) 70%,
            rgba(255, 255, 255, 0.9) 100%);
    position: relative;
}

#services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, var(--brand-gold-08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--brand-cream-12) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 48px 32px;
    box-shadow:
        0 8px 32px var(--brand-gold-15),
        0 2px 8px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid var(--brand-gold-20);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow:
        0 20px 60px var(--brand-gold-25),
        0 8px 24px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border-color: var(--brand-gold-40);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gold-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    transition: all 0.4s ease;
    box-shadow:
        0 8px 24px var(--brand-gold-30),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    position: relative;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow:
        0 12px 32px var(--brand-gold-40),
        inset 0 2px 4px rgba(255, 255, 255, 0.4);
}

.service-icon i {
    font-size: 36px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--graphite-soft);
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.service-card p {
    color: var(--gray-medium);
    margin-bottom: 32px;
    line-height: 1.7;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    text-align: left;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-medium);
    margin-bottom: 12px;
    padding: 8px 0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.service-features li:hover {
    background: var(--brand-gold-08);
    padding-left: 12px;
    color: var(--graphite-soft);
}

.service-features i {
    width: 20px;
    height: 20px;
    font-size: 14px;
    color: var(--brand-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-gold-10);
    border-radius: 50%;
    flex-shrink: 0;
}

/* === PROCESS SECTION === */
#process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-cream-10) 0%, var(--brand-cream-05) 100%);
    position: relative;
}

#process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, var(--brand-gold-10) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--brand-cream-10) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, var(--brand-gold-05) 0%, transparent 50%);
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
    position: relative;
}

.process-step {
    text-align: center;
    padding: 32px 24px;
    position: relative;
}

.process-number {
    position: relative;
    margin: 0 auto 24px;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-number span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-gold);
    z-index: 2;
    position: relative;
}

.process-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--brand-gold-10);
    border: 2px solid var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon {
    background: var(--brand-gold);
    transform: scale(1.1);
}

.process-step:hover .process-icon svg {
    color: white;
}

.process-icon svg {
    width: 24px;
    height: 24px;
    color: var(--brand-gold);
    transition: color 0.3s ease;
}

.process-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--graphite-soft);
    margin-bottom: 16px;
}

.process-step p {
    color: var(--gray-medium);
    line-height: 1.6;
}

/* === PARTNERSHIP SECTION === */
#partnership-section {
    padding: 60px 0;
    background: linear-gradient(135deg,
            var(--brand-cream-08) 0%,
            rgba(255, 255, 255, 0.95) 25%,
            var(--brand-cream-05) 50%,
            rgba(255, 255, 255, 0.98) 75%,
            var(--brand-cream-06) 100%);
    position: relative;
    overflow: hidden;
}

#partnership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, var(--brand-gold-10) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, var(--brand-cream-08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, var(--brand-gold-05) 0%, transparent 70%);
    pointer-events: none;
}

.partnership-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Logo Section */
.partnership-logo-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.logo-container {
    position: relative;
    margin-bottom: 32px;
    animation: float-logo 6s ease-in-out infinite;
}

.brand-logo {
    width: 550px;
    height: 550px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px var(--brand-gold-25));
    transition: all 0.5s ease;
}

.logo-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 580px;
    height: 580px;
    background: radial-gradient(circle, var(--brand-gold-12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
    pointer-events: none;
}

.brand-message h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--graphite-soft);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.brand-message p {
    font-size: 1.125rem;
    color: var(--gray-medium);
    line-height: 1.6;
    max-width: 450px;
}

/* Info Section */
.partnership-info-section {
    color: var(--graphite-soft);
}

.section-intro {
    margin-bottom: 32px;
}

.section-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: var(--graphite-soft);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-medium);
    line-height: 1.5;
    margin-bottom: 0;
    overflow-wrap: break-word;
}

.partnership-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--brand-gold-15);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px var(--brand-gold-08);
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.95);
    border-color: var(--brand-gold-25);
    box-shadow: 0 8px 30px var(--brand-gold-15);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-badge {
    display: inline-block;
    background: var(--gold-gradient);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 16px;
    margin-bottom: 14px;
    box-shadow: 0 4px 12px var(--brand-gold-25);
}

.feature-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--graphite-soft);
    margin-bottom: 12px;
    line-height: 1.3;
    font-family: 'Inter', sans-serif;
}

.feature-content p {
    color: var(--gray-medium);
    line-height: 1.5;
    font-size: 0.95rem;
    overflow-wrap: break-word;
}

.feature-content strong {
    color: var(--brand-gold);
    font-weight: 600;
}

/* Animations */
@keyframes float-logo {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.6;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .partnership-content {
        gap: 60px;
    }

    .brand-logo {
        width: 450px;
        height: 450px;
    }

    .logo-glow {
        width: 480px;
        height: 480px;
    }
}

@media (max-width: 1024px) {
    .partnership-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .partnership-info-section {
        text-align: left;
        width: 100%;
        box-sizing: border-box;
    }

    .brand-logo {
        width: 400px;
        height: 400px;
    }

    .logo-glow {
        width: 430px;
        height: 430px;
    }

    .section-intro h2 {
        font-size: 2.25rem;
    }

    .brand-message h3 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    #partnership-section {
        padding: 50px 0;
    }

    .partnership-content {
        gap: 32px;
    }

    .brand-logo {
        width: 260px;
        height: 260px;
    }

    .logo-glow {
        width: 280px;
        height: 280px;
    }

    .section-intro h2 {
        font-size: 2rem;
    }

    .brand-message h3 {
        font-size: 1.5rem;
    }

    .brand-message p {
        font-size: 0.95rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .feature-item {
        padding: 20px;
    }

    .feature-content h4 {
        font-size: 1.1rem;
    }

    .feature-content p {
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    #partnership-section {
        padding: 40px 0;
    }

    .partnership-content {
        gap: 24px;
    }

    .brand-logo {
        width: 220px;
        height: 220px;
    }

    .logo-glow {
        width: 240px;
        height: 240px;
    }

    .section-intro {
        margin-bottom: 24px;
    }

    .section-intro h2 {
        font-size: 1.75rem;
    }

    .brand-message h3 {
        font-size: 1.3rem;
    }

    .partnership-features {
        gap: 16px;
    }

    .feature-item {
        padding: 18px;
    }

    .feature-badge {
        font-size: 0.65rem;
        padding: 5px 14px;
        margin-bottom: 12px;
    }

    .feature-content h4 {
        font-size: 1rem;
        margin-bottom: 10px;
    }

    .feature-content p {
        font-size: 0.85rem;
    }
}

/* === QUALITY SECTION === */
#quality-section {
    padding: 80px 0;
    background: linear-gradient(135deg,
            var(--brand-cream-08) 0%,
            rgba(255, 255, 255, 0.95) 25%,
            var(--brand-cream-05) 50%,
            rgba(255, 255, 255, 0.98) 75%,
            var(--brand-cream-06) 100%);
    color: var(--graphite-soft);
    position: relative;
    overflow: hidden;
}

.quality-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.quality-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-gold-15);
    border: 1px solid var(--brand-gold-25);
    border-radius: 50px;
    padding: 8px 24px;
    margin-bottom: 32px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--graphite-soft);
}

.quality-badge svg {
    width: 20px;
    height: 20px;
    color: var(--brand-gold);
}

.quality-text h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--graphite-soft);
}

.quality-text p {
    font-size: 1.125rem;
    color: var(--gray-medium);
    line-height: 1.7;
    margin-bottom: 40px;
}

.quality-metrics {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.quality-metric {
    text-align: center;
}

.metric-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-gold);
    margin-bottom: 8px;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--gray-medium);
    font-weight: 500;
}

.quality-features {
    margin-bottom: 40px;
}

.quality-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
    color: var(--gray-medium);
}

.quality-feature svg {
    width: 20px;
    height: 20px;
    color: var(--brand-gold);
    flex-shrink: 0;
}

.quality-cta {
    display: inline-flex;
}

.quality-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 500px;
}

.quality-circle {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--brand-gold-10) 0%, var(--brand-cream-08) 50%, transparent 100%);
    border: 2px solid var(--brand-gold-20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
        0 0 60px rgba(208, 172, 92, 0.2),
        inset 0 0 40px rgba(208, 172, 92, 0.1);
}

.quality-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg,
            transparent 0deg,
            var(--brand-gold-25) 90deg,
            transparent 180deg,
            var(--brand-gold-25) 270deg,
            transparent 360deg);
    animation: rotate-slow 15s linear infinite;
}

.quality-icon-large {
    width: 80px;
    height: 80px;
    background: var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quality-icon-large svg {
    width: 40px;
    height: 40px;
    color: white;
}

.quality-floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--brand-gold-20);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    box-shadow: 0 4px 20px var(--brand-gold-15);
}

.floating-card .card-icon {
    width: 32px;
    height: 32px;
    background: var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card .card-icon svg {
    width: 16px;
    height: 16px;
    color: white;
}

.floating-card .card-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--graphite-soft);
}

.card-1 {
    top: 10%;
    right: 20%;
    animation: float-1 6s ease-in-out infinite;
}

.card-2 {
    bottom: 15%;
    left: 10%;
    animation: float-2 8s ease-in-out infinite;
}

.card-3 {
    top: 40%;
    right: 5%;
    animation: float-3 7s ease-in-out infinite;
}

/* === CONTACT SECTION === */
#contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--white-soft) 0%, var(--brand-cream-10) 100%);
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--graphite-soft);
    margin-bottom: 24px;
}

.contact-info p {
    font-size: 1.125rem;
    color: var(--gray-medium);
    margin-bottom: 48px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid var(--brand-gold-20);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--brand-gold-10);
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--brand-gold-20);
    border-color: var(--brand-gold-30);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--brand-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.contact-details h3 {
    font-weight: 600;
    color: var(--graphite-soft);
    margin-bottom: 8px;
}

.contact-details p {
    color: var(--gray-medium);
    margin-bottom: 4px;
}

.contact-details span {
    font-size: 0.875rem;
    color: var(--brand-gold);
}

.contact-form {
    background: white;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(234, 226, 182, 0.3);
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.form-header svg {
    width: 32px;
    height: 32px;
    color: var(--brand-gold);
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--graphite-soft);
    margin: 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    color: var(--graphite-soft);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--gray-light);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: white;
    font-family: 'Open Sans', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--brand-gold);
    box-shadow: 0 0 0 2px rgba(208, 172, 92, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-footer {
    width: 100%;
    margin-top: 16px;
}

.form-footer input[type="submit"] {
    background: var(--brand-gold);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
}

.form-footer input[type="submit"]:hover {
    background: var(--brand-cream);
    transform: translateY(-2px);
}

/* WordPress Elementor form compatibility */
.hf-form {
    width: 100%;
}

@keyframes cream-wave {
    0% {
        background-position: 0% 50%;
        transform: scale(1) rotate(0deg);
    }

    33% {
        background-position: 100% 50%;
        transform: scale(1.02) rotate(0.5deg);
    }

    66% {
        background-position: 50% 100%;
        transform: scale(0.98) rotate(-0.3deg);
    }

    100% {
        background-position: 0% 50%;
        transform: scale(1) rotate(0deg);
    }
}

@keyframes text-glow {

    0%,
    100% {
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 4px 30px rgba(0, 0, 0, 0.2);
    }

    50% {
        text-shadow:
            0 2px 4px rgba(0, 0, 0, 0.3),
            0 4px 30px rgba(0, 0, 0, 0.2),
            0 0 40px rgba(208, 172, 92, 0.4);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes spin-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slide-up {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes rotate-slow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes float-1 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-15px) translateX(8px) rotate(2deg);
    }

    66% {
        transform: translateY(8px) translateX(-8px) rotate(-2deg);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }

    50% {
        transform: translateY(-20px) translateX(12px) scale(1.05);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) translateX(-8px) rotate(-3deg);
    }

    75% {
        transform: translateY(12px) translateX(8px) rotate(3deg);
    }
}

@keyframes float-particles {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(-50px, -50px) scale(1.1);
        opacity: 0.4;
    }

    100% {
        transform: translate(-100px, -100px) scale(1);
        opacity: 0.3;
    }
}

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .quality-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.25rem;
    }

    .hero-content {
        min-height: auto;
        padding: 80px 20px 40px;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 24px;
    }

    .hero-subtitle {
        font-size: 1.375rem;
        margin-bottom: 32px;
    }

    .hero-years {
        font-size: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    .hero-feature {
        justify-content: center;
        padding: 12px 20px;
    }

    #right-section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-card {
        padding: 20px;
        gap: 16px;
    }

    .hero-card-number {
        font-size: 2rem;
    }

    .hero-card-icon {
        width: 44px;
        height: 44px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 24px;
    }

    .service-icon i {
        font-size: 32px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .quality-metrics {
        justify-content: center;
        flex-wrap: wrap;
    }

    .quality-metric {
        flex: 0 1 calc(50% - 20px);
        min-width: 140px;
    }

    .metric-number {
        font-size: 2.25rem;
    }

    .quality-circle {
        width: 250px;
        height: 250px;
    }

    .quality-visual {
        height: 400px;
    }

    .floating-card {
        padding: 12px;
        min-width: 70px;
    }

    .floating-card .card-icon {
        width: 28px;
        height: 28px;
    }

    .floating-card .card-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 16px;
    }

    body::before {
        animation-duration: 30s;
    }

    #hero-grid {
        padding-top: 60px;
    }

    .hero-content {
        padding: 24px 16px;
        gap: 40px;
    }

    .hero-content::before {
        background-size: 80px 80px, 120px 120px;
        opacity: 0.2;
    }

    .hero-badge {
        font-size: 0.8rem;
        padding: 8px 20px;
        margin-bottom: 24px;
    }

    .hero-icon {
        width: 18px;
        height: 18px;
    }

    .hero-title {
        font-size: 2.25rem;
        line-height: 1.15;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 24px;
    }

    .hero-years {
        font-size: 1.25rem;
    }

    .hero-features {
        gap: 10px;
        margin-bottom: 32px;
    }

    .hero-feature {
        font-size: 0.875rem;
        padding: 10px 16px;
    }

    .hero-feature svg {
        width: 20px;
        height: 20px;
    }

    .section-header h2 {
        font-size: 1.875rem;
        margin-bottom: 16px;
    }

    .section-header p {
        font-size: 1rem;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .btn-primary svg {
        width: 16px;
        height: 16px;
    }

    #right-section {
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .hero-card {
        padding: 16px;
        gap: 12px;
        flex-direction: column;
        text-align: center;
    }

    .hero-card-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto;
    }

    .hero-card-icon svg {
        width: 20px;
        height: 20px;
    }

    .hero-card-number {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }

    .hero-card-label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }

    .hero-card-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .service-card {
        padding: 28px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .service-icon i {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }

    .service-card p {
        font-size: 0.925rem;
        margin-bottom: 24px;
    }

    .service-features li {
        font-size: 0.875rem;
    }

    #partnership-section,
    #quality-section,
    #contact-section {
        padding: 50px 0;
    }

    .quality-text h2 {
        font-size: 2rem;
    }

    .quality-text p {
        font-size: 1rem;
    }

    .quality-metrics {
        gap: 20px;
        margin-bottom: 32px;
    }

    .quality-metric {
        flex: 1 1 100%;
    }

    .metric-number {
        font-size: 2rem;
    }

    .metric-label {
        font-size: 0.8rem;
    }

    .quality-circle {
        width: 200px;
        height: 200px;
    }

    .quality-icon-large {
        width: 60px;
        height: 60px;
    }

    .quality-icon-large svg {
        width: 30px;
        height: 30px;
    }

    .quality-visual {
        height: 320px;
    }

    .floating-card {
        display: none;
    }

    .contact-form {
        padding: 24px 16px;
    }

    .form-header h3 {
        font-size: 1.25rem;
    }

    .contact-info h2 {
        font-size: 2rem;
    }

    .contact-info p {
        font-size: 1rem;
    }
}/* End custom CSS */