* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #FFFFFF;
    color: #2c2c2c;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    opacity: 0.05;
    animation: float 20s infinite ease-in-out;
}

.floating-shape:nth-child(1) {
    width: 200px;
    height: 200px;
    background: #C9A227;
    border-radius: 50%;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.floating-shape:nth-child(2) {
    width: 150px;
    height: 150px;
    background: #C9A227;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.floating-shape:nth-child(3) {
    width: 180px;
    height: 180px;
    background: #C9A227;
    border-radius: 50%;
    bottom: 20%;
    left: 50%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }

    50% {
        transform: translate(0, -100px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, -50px) rotate(270deg);
    }
}

.site-header {
    background: #C9A227;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(201, 162, 39, 0.3);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.container {
    /* max-width: 1242px; */
    padding: 0 20px;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 117px;
    margin-top: 20px;

}

.logo-container {
    width: 60px;
    height: 60px;
    background: #FFFFFF;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(201, 162, 39, 0.3), transparent);
    animation: shine 3s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes shine {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #C9A227;
    position: relative;
    z-index: 1;
}

.main-nav ul {
    margin-bottom: 30px;
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    position: relative;
    overflow: hidden;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #FFFFFF;
    transition: all 0.3s;
    transform: translateX(-50%);
}

.main-nav a:hover::before {
    width: 80%;
}

.main-nav a:hover {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transform: translateY(-2px);
}

.hero {
    background: url(https://chat.google.com/u/0/api/get_attachment_url?url_type=FIFE_URL&content_type=image%2Fjpeg&attachment_token=AOo0EEVY9ZIJsRojqNgTALA8718CGKf8ioFdYHuit8srUqH8OFg%2FRfBdg6OJKmcYE2tKQKbO2vbA10fQpeP4U5MHwuOZMJpGOn6OgsIokTe7vR8uf8iuK306WiYWWuzwZ1N9dZqr7bAOr2Efor4grF1%2FyXLnvN5VUCHCOfihXjLMr1kEVPoze32ZwMVImNLzAVji%2F802ETvYdwIitSeTFxfGUFT7THsGFuFFxRpFSeVKwb52pbpioxZ3LxD21PX9XTWIDkjkarbO7lJekr0ZqaBAMDITPMRCEDEDqynmWmQIDTTYLXVxrmpXwSJUYYMpaqipXn%2FzaYCyiAoMkMsYWVbuaNFsiNvJ2whQC%2FPYYeMHJ7QvqC6LK4L7dicpm3oHYAD0zt0Ftwol%2BVfD31bEiIZG2ZKCeZIFfvW8b6QO3NMrC9eYDARHqk8YyQ8zN7txzaoCehylzMGdVxzRY1raaEw3hAVXVjfEZls55FvTTKGLDknfhQc1ooWFM1eFuhFykCjYbFoeO%2FsDpgHV9gCMUGxg5EbAR6MNpe7ZYRXv6W%2BzXYYastYGRNNyGweaBPTWGIwqij3%2B%2Fi7CFJxxvRIxbijwrRrXJzVzdnsSjaBma91VKjx%2FiFBL1CjMBj07hJ%2BDIYld8e0B&allow_caching=true&sz=w1920-h1014-rw&auditContext=forDisplay);
    /* background: linear-gradient(135deg, #C9A227 0%, #d4b13f 100%); */
    padding: 120px 20px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: heroShine 3s infinite;
}

@keyframes heroShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    animation: fadeInUp 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #FFFFFF;
    color: #C9A227;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(201, 162, 39, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.section {
    padding: 80px 20px;
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #C9A227;
    animation: fadeInUp 0.8s ease-out;
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #C9A227;
    transform: translateX(-50%);
    animation: expandLine 1s ease-out 0.3s forwards;
}

@keyframes expandLine {
    to {
        width: 100px;
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #C9A227;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUpCard 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes fadeInUpCard {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(201, 162, 39, 0.4);
    border-color: #d4b13f;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #C9A227;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    transition: all 0.4s;
    animation: rotateIn 0.6s ease-out;
}

@keyframes rotateIn {
    from {
        transform: rotate(-180deg) scale(0);
        opacity: 0;
    }

    to {
        transform: rotate(0) scale(1);
        opacity: 1;
    }
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(201, 162, 39, 0.6);
}

.service-card h3 {
    color: #C9A227;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.service-card:hover h3 {
    transform: translateX(5px);
}

.service-card ul {
    list-style: none;
    margin-top: 1rem;
}

.service-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    opacity: 0;
    animation: fadeInLeft 0.5s ease-out forwards;
}

.service-card li:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card li:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card li:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card li:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card li:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C9A227;
    font-weight: bold;
    transition: all 0.3s;
}

.service-card:hover li:before {
    transform: scale(1.3);
}

.process-section {
    background: #f9f9f9;
    position: relative;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
    opacity: 0;
    animation: zoomIn 0.6s ease-out forwards;
}

.process-step:nth-child(1) {
    animation-delay: 0.2s;
}

.process-step:nth-child(2) {
    animation-delay: 0.4s;
}

.process-step:nth-child(3) {
    animation-delay: 0.6s;
}

.process-step:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.step-number {
    width: 80px;
    height: 80px;
    background: #C9A227;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    transition: all 0.4s;
    position: relative;
}

.step-number::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 2px solid #C9A227;
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s;
}

.process-step:hover .step-num.main-nav ulber {
    transform: rotate(360deg) scale(1.1);
}

.process-step:hover .step-number::before {
    opacity: 1;
    transform: scale(1.2);
}

.pricing-grid {
    display: flex;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    /* gap: 2rem; */
    /* max-width: 1200px; */
    /* margin: 0 auto; */
    /* margin: auto; */
    margin-left: 491px;
}

.pricing-card {
    background: #FFFFFF;
    border: 2px solid #C9A227;
    border-radius: 8px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.5s;
    position: relative;
    opacity: 0;
    animation: fadeInUpCard 0.6s ease-out forwards;
    width: 414px;
    margin-right: 45px;
    margin-left: -11px;
}

.pricing-card:nth-child(1) {
    animation-delay: 0.2s;
}

.pricing-card:nth-child(2) {
    animation-delay: 0.4s;
}

.pricing-card:nth-child(3) {
    animation-delay: 0.6s;
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(201, 162, 39, 0.3);
}

.pricing-card.featured {
    background: #C9A227;
    color: #FFFFFF;
    transform: scale(1.05);
    animation: pulse 2s infinite;
}

.pricing-card.featured h3,
.pricing-card.featured .price {
    color: #FFFFFF;
}

.pricing-card.featured li:before {
    color: #FFFFFF;
}

.featured-badge {
    background: #FFFFFF;
    color: #C9A227;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 1s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.pricing-card h3 {
    color: #C9A227;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    color: #C9A227;
    font-weight: bold;
    margin: 1.5rem 0;
    transition: all 0.3s;
}

.pricing-card:hover .price {
    transform: scale(1.1);
}

.price span {
    font-size: 1rem;
    color: #666;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.pricing-card li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover li {
    transform: translateX(5px);
}

.pricing-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #C9A227;
    font-weight: bold;
}

.results-section {
    background: #C9A227;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.results-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.results-section h2 {
    color: #FFFFFF;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.result-stat {
    opacity: 0;
    animation: fadeInScale 0.8s ease-out forwards;
}

.result-stat:nth-child(1) {
    animation-delay: 0.2s;
}

.result-stat:nth-child(2) {
    animation-delay: 0.4s;
}

.result-stat:nth-child(3) {
    animation-delay: 0.6s;
}

.result-stat:nth-child(4) {
    animation-delay: 0.8s;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    transition: all 0.3s;
}

.result-stat:hover .stat-number {
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.stat-number:after {
    content: '%';
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.stat-description {
    opacity: 0.9;
}

.cta-container {
    background: linear-gradient(135deg, #C9A227 0%, #d4b13f 100%);
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.cta-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: ctaShine 4s infinite;
}

@keyframes ctaShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.cta-heading {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.cta-description {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button-primary {
    background: #FFFFFF;
    color: #C9A227;
    animation: fadeInUp 0.8s ease-out 0.4s backwards;
}

.cta-button-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.button-icon {
    transition: transform 0.3s;
}

.cta-button:hover .button-icon {
    transform: translateX(5px);
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.feature-item:nth-child(1) {
    animation-delay: 0.6s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.7s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.8s;
}

.feature-icon {
    animation: ping 2s infinite;
}

@keyframes ping {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

footer {
    background: #2c2c2c;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 0 20px;
}

.footer-section {
    animation: fadeInUp 0.6s ease-out;
}

.footer-section h4 {
    color: #C9A227;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #C9A227;
    transition: width 0.3s;
}

.footer-section:hover h4::after {
    width: 100%;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s;
    display: inline-block;
}

.footer-section a:hover {
    opacity: 1;
    color: #C9A227;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 1.5rem;
    text-align: center;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .main-nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section h2 {
        font-size: 2rem;
    }
}