* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-pink: #D89B02;
    --primary-rgb: 216, 155, 2;
    --accent-pink: #D89B02;
    --text-light: #ffffff;
    --text-dark: #000000;
    --bg-dark: #0a0a0a;
}

body {
    font-family: 'Lexend', sans-serif;
    background: #000000;
    color: var(--text-light);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Header */
.header {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    background: transparent;
    border: none;
}

.header-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
    background: transparent;
    display: block;
}

.header-logo:hover {
    transform: scale(1.05);
}

.modern-nav {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-text-btn {
    padding: 12px 24px;
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-text-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--text-light);
}

.nav-text-btn.active {
    background: var(--primary-pink);
    color: var(--text-light);
    box-shadow: 0 4px 15px rgba(216, 155, 2, 0.4);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .header {
        top: auto;
        bottom: 20px;
        width: calc(100% - 40px);
        max-width: 100%;
    }

    .modern-nav {
        padding: 10px 15px;
        gap: 8px;
        width: 100%;
        justify-content: space-between;
    }

    .nav-text-btn {
        padding: 10px 12px;
        font-size: 12px;
        white-space: nowrap;
        flex: 1;
        text-align: center;
        min-width: 0;
    }
}

@media (max-width: 480px) {
    .header {
        bottom: 15px;
        width: calc(100% - 30px);
    }

    .modern-nav {
        padding: 8px 10px;
        gap: 6px;
    }

    .nav-text-btn {
        padding: 8px 8px;
        font-size: 11px;
    }
}

/* Old header styles - remove */
.header-container,
.logo-wrapper,
.header-logo,
.nav-menu,
.nav-link,
.mobile-menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
}

/* Brand Logo */
.hero-logo-wrapper {
    margin-bottom: 30px;
    animation: fadeInDown 0.12s ease;
}

.hero-logo {
    height: auto;
    width: 363px;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
}

@media (max-width: 768px) {
    .hero-logo {
        width: min(240px, 80vw);
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: min(200px, 78vw);
    }
}

.brand-logo {
    font-size: clamp(64px, 12vw, 120px);
    font-weight: 700;
    letter-spacing: -2px;
    margin-bottom: 30px;
    color: var(--text-light);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.12s ease;
}

.brand-logo sup {
    font-size: 0.4em;
    vertical-align: super;
    margin-left: 5px;
}

/* Tagline */
.tagline {
    font-size: clamp(16px, 3vw, 24px);
    margin-bottom: 50px;
    font-weight: 300;
    animation: fadeInUp 0.12s ease 0.2s both;
}

.tagline-bracket {
    color: var(--text-light);
}

.tagline-text {
    color: var(--text-light);
    font-weight: 500;
}

.tagline-reg {
    font-size: 0.6em;
    vertical-align: super;
}

.tagline-subtitle {
    color: var(--primary-pink);
    font-style: italic;
    font-weight: 400;
}

/* Mission Statement */
.mission-statement {
    margin-bottom: 60px;
    animation: fadeInUp 0.12s ease 0.4s both;
}

.mission-text {
    font-size: clamp(18px, 3vw, 28px);
    font-weight: 300;
    font-style: italic;
    margin-bottom: 10px;
}

.mission-highlight {
    font-size: clamp(20px, 3.5vw, 32px);
    font-weight: 600;
    color: var(--text-light);
}

/* Follow Link */
.follow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-pink);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    animation: fadeInUp 0.12s ease 0.6s both;
}

.follow-link:hover {
    gap: 15px;
    color: var(--accent-pink);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.follow-link:hover .arrow-icon {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    animation: bounce 2s infinite;
}

.scroll-text {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary-pink), transparent);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: var(--bg-dark);
}

.container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-label {
    display: inline-block;
    color: var(--primary-pink);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-heading {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-heading .highlight {
    color: var(--primary-pink);
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 15px;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* About Section */
.about-section {
    padding: 120px 20px;
    background: #000;
}

.about-section .section-container {
    padding-left: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.about-text {
    text-align: start;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--primary-pink);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.about-image {
    position: relative;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(216, 155, 2, 0.2), transparent);
}

/* Services Section */
.services-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #0f0f0f 0%, rgba(216, 155, 2, 0.05) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-pink);
    background: rgba(216, 155, 2, 0.05);
    box-shadow: 0 10px 40px rgba(216, 155, 2, 0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(216, 155, 2, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--primary-pink);
}

.service-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-description {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
}

/* Testimonials Section */
.testimonials-section {
    padding: 120px 20px;
    background: #000;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 0 10px 40px rgba(216, 155, 2, 0.15);
}

.testimonial-content {
    margin-bottom: 30px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-pink);
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-light);
}

.author-title {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Contact Section */
.contact-section {
    padding: 120px 20px;
    background: linear-gradient(180deg, #0f0f0f 0%, rgba(216, 155, 2, 0.096) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(216, 155, 2, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-pink);
}

.contact-text {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-light);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 50px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* WPForms inside Contact section */
.contact-form-wrapper .wpforms-container {
    margin: 0;
}

.contact-form-wrapper .wpforms-container .wpforms-field {
    padding: 0;
    margin: 0 0 16px;
}

.contact-form-wrapper .wpforms-container .wpforms-field-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.contact-form-wrapper .wpforms-container input[type="text"],
.contact-form-wrapper .wpforms-container input[type="email"],
.contact-form-wrapper .wpforms-container input[type="tel"],
.contact-form-wrapper .wpforms-container select,
.contact-form-wrapper .wpforms-container textarea {
    width: 100% !important;
    padding: 16px 20px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 10px !important;
    color: var(--text-light) !important;
    font-size: 15px !important;
    font-family: 'Lexend', sans-serif !important;
    transition: all 0.3s ease;
}

.contact-form-wrapper .wpforms-container input:focus,
.contact-form-wrapper .wpforms-container select:focus,
.contact-form-wrapper .wpforms-container textarea:focus {
    outline: none !important;
    border-color: var(--primary-pink) !important;
    background: rgba(216, 155, 2, 0.05) !important;
}

.contact-form-wrapper .wpforms-container textarea {
    resize: vertical;
}

.contact-form-wrapper .wpforms-container .wpforms-submit-container {
    padding: 0;
    margin-top: 10px;
}

.contact-form-wrapper .wpforms-container button.wpforms-submit {
    width: 100%;
    padding: 18px 40px;
    background: var(--primary-pink) !important;
    border: none !important;
    border-radius: 10px !important;
    color: var(--text-light) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    font-family: 'Lexend', sans-serif !important;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-wrapper .wpforms-container button.wpforms-submit:hover {
    background: var(--accent-pink) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(216, 155, 2, 0.4);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 15px;
    font-family: 'Lexend', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-pink);
    background: rgba(216, 155, 2, 0.05);
}

.form-group textarea {
    resize: vertical;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 8px;
}

.form-submit-btn {
    padding: 18px 40px;
    background: var(--primary-pink);
    border: none;
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Lexend', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-submit-btn:hover {
    background: var(--accent-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(216, 155, 2, 0.4);
}

/* Responsive Sections */
@media (max-width: 1024px) {
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .about-image {
        height: 400px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-section,
    .services-section,
    .testimonials-section,
    .contact-section {
        padding: 80px 20px;
    }
    
    .section-container {
        padding: 0 20px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* CTA Buttons */
.cta-section {
    padding: 80px 20px;
    background: var(--bg-dark);
}

.container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-btn {
    display: block;
    padding: 20px 40px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.primary-btn {
    background: var(--text-light);
    color: var(--text-dark);
    border: 2px solid var(--text-light);
}

.primary-btn:hover {
    background: transparent;
    color: var(--text-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.secondary-btn {
    background: var(--primary-pink);
    color: var(--text-light);
    border: 2px solid var(--primary-pink);
}

.secondary-btn:hover {
    background: transparent;
    color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(216, 155, 2, 0.3);
}

/* Footer */
.footer {
    padding: 80px 20px 40px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.social-icon:hover {
    background: var(--primary-pink);
    border-color: var(--primary-pink);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(216, 155, 2, 0.3);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright,
.made-with {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.made-with .heart {
    color: var(--primary-pink);
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer-top {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 60px 20px 30px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .brand-logo {
        font-size: 64px;
    }

    .tagline {
        font-size: 16px;
    }

    .mission-text {
        font-size: 18px;
    }

    .mission-highlight {
        font-size: 22px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-pink);
    color: var(--text-light);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-pink);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-pink);
}
