/* ==========================================================================
   Rao Nete Website
   components.css
   Part 1 — Buttons & Shared UI Components
   Version: 1.0
   ========================================================================== */


/* ==========================================================================
   BUTTON BASE
   ========================================================================== */

.btn {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: var(--space-12);

    min-height: var(--button-height);

    padding:
        0
        var(--button-padding-x);

    border: none;

    border-radius: var(--radius-pill);

    font-family: var(--font-body);

    font-size: var(--text-sm);

    font-weight: var(--font-semibold);

    letter-spacing: .03em;

    white-space: nowrap;

    cursor: pointer;

    user-select: none;

    transition:
        background var(--transition-base),
        color var(--transition-base),
        border-color var(--transition-base),
        transform var(--transition-base),
        box-shadow var(--transition-base);

}


/* ==========================================================================
   PRIMARY BUTTON
   ========================================================================== */

.btn-primary {

    background: var(--color-gold);

    color: var(--color-forest);

    box-shadow: var(--shadow-md);

}

.btn-primary:hover {

    transform: translateY(-3px);

    box-shadow: var(--shadow-lg);

}

.btn-primary:active {

    transform: translateY(0);

}


/* ==========================================================================
   SECONDARY BUTTON
   ========================================================================== */

.btn-secondary {

    background: rgba(255,255,255,.08);

    color: var(--color-white);

    border: 1px solid rgba(255,255,255,.12);

    backdrop-filter: blur(12px);

    -webkit-backdrop-filter: blur(12px);

}

.btn-secondary:hover {

    background: rgba(255,255,255,.14);

    border-color: rgba(255,255,255,.24);

    transform: translateY(-3px);

}


/* ==========================================================================
   OUTLINE BUTTON
   ========================================================================== */

.btn-outline {

    background: transparent;

    color: var(--color-gold);

    border: 2px solid var(--color-gold);

}

.btn-outline:hover {

    background: var(--color-gold);

    color: var(--color-forest);

    transform: translateY(-3px);

}


/* ==========================================================================
   GHOST BUTTON
   ========================================================================== */

.btn-ghost {

    background: transparent;

    color: var(--color-white);

}

.btn-ghost:hover {

    background: rgba(255,255,255,.08);

}


/* ==========================================================================
   BUTTON SIZES
   ========================================================================== */

.btn-sm {

    min-height: 44px;

    padding-inline: 24px;

    font-size: var(--text-xs);

}

.btn-lg {

    min-height: 64px;

    padding-inline: 42px;

    font-size: var(--text-base);

}


/* ==========================================================================
   FULL WIDTH
   ========================================================================== */

.btn-block {

    width: 100%;

}


/* ==========================================================================
   DISABLED
   ========================================================================== */

.btn:disabled,
.btn.disabled {

    opacity: .55;

    cursor: not-allowed;

    pointer-events: none;

}


/* ==========================================================================
   ICON BUTTON
   ========================================================================== */

.btn-icon {

    width: 56px;
    height: 56px;

    padding: 0;

    border-radius: 50%;

}

.btn-icon img,
.btn-icon svg {

    width: 22px;
    height: 22px;

}


/* ==========================================================================
   BADGES
   ========================================================================== */

.badge {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding:
        8px
        18px;

    border-radius: var(--radius-pill);

    font-size: var(--text-xs);

    font-weight: var(--font-semibold);

    letter-spacing: var(--tracking-wide);

    text-transform: uppercase;

}


/* Gold */

.badge-gold {

    background: rgba(200,156,61,.18);

    color: var(--color-gold);

}


/* Forest */

.badge-forest {

    background: rgba(23,56,40,.30);

    color: var(--color-white);

}


/* ==========================================================================
   PILLS
   ========================================================================== */

.pill {

    display: inline-flex;

    align-items: center;

    gap: var(--space-8);

    padding:
        10px
        18px;

    border-radius: var(--radius-pill);

    background: rgba(255,255,255,.06);

    border: 1px solid var(--color-border);

}

.pill:hover {

    border-color: rgba(200,156,61,.35);

}


/* ==========================================================================
   TEXT LINKS
   ========================================================================== */

.text-link {

    display: inline-flex;

    align-items: center;

    gap: var(--space-8);

    color: var(--color-gold);

    font-weight: var(--font-medium);

}

.text-link:hover {

    gap: var(--space-12);

}


/* ==========================================================================
   DIVIDER
   ========================================================================== */

.divider {

    width: 100%;

    height: 1px;

    margin:
        var(--space-64)
        0;

    background: var(--color-border);

}


/* ==========================================================================
   DECORATIVE DIVIDER
   ========================================================================== */

.divider-decorative {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: var(--space-16);

    margin:
        var(--space-64)
        0;

}

.divider-decorative::before,
.divider-decorative::after {

    content: "";

    flex: 1;

    height: 1px;

    background: var(--color-border);

}

.divider-icon {

    color: var(--color-gold);

    font-size: 1.25rem;

}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {

    .btn {

        width: 100%;

    }

    .btn-icon {

        width: 52px;
        height: 52px;

    }

    .btn-lg {

        min-height: 56px;

    }

}
/* ==========================================================================
   Rao Nete Website
   components.css
   Part 2 — Cards
   Version: 1.0
   ========================================================================== */


/* ==========================================================================
   BASE CARD
   ========================================================================== */

.card {

    position: relative;

    display: flex;

    flex-direction: column;

    background: rgba(255,255,255,.04);

    border: 1px solid var(--color-border);

    border-radius: var(--radius-xl);

    overflow: hidden;

    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base);

}

.card:hover {

    transform: translateY(-8px);

    border-color: rgba(200,156,61,.35);

    box-shadow: var(--shadow-lg);

}


/* ==========================================================================
   CARD IMAGE
   ========================================================================== */

.card-image {

    position: relative;

    overflow: hidden;

}

.card-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform .8s ease;

}

.card:hover .card-image img {

    transform: scale(1.06);

}


/* ==========================================================================
   CARD CONTENT
   ========================================================================== */

.card-content {

    padding: var(--space-32);

}

.card-content h3 {

    margin-bottom: var(--space-16);

}

.card-content p {

    margin: 0;

    color: var(--color-muted);

}


/* ==========================================================================
   PILLAR CARD
   ========================================================================== */

.pillar-card {

    text-align: center;

}

.pillar-card .card-image {

    display: flex;

    align-items: center;
    justify-content: center;

    height: 120px;

    background: rgba(200,156,61,.08);

}

.pillar-card .card-image img {

    width: 64px;
    height: 64px;

    object-fit: contain;

}


/* ==========================================================================
   FAMILY CARD
   ========================================================================== */

.family-card {

    overflow: hidden;

}

.family-card .card-image {

    aspect-ratio: 4 / 5;

}

.family-role {

    margin-bottom: var(--space-12);

}

.family-card h3 {

    margin-bottom: var(--space-12);

}


/* ==========================================================================
   PLANT CARD
   ========================================================================== */

.plant-card {

    overflow: hidden;

}

.plant-card .card-image {

    aspect-ratio: 16 / 10;

}

.plant-category {

    margin-bottom: var(--space-12);

}

.plant-card h3 {

    margin-bottom: var(--space-16);

}


/* ==========================================================================
   TESTIMONIAL CARD
   ========================================================================== */

.testimonial-card {

    position: relative;

}

.testimonial-card blockquote {

    font-style: italic;

    line-height: 1.8;

}

.testimonial-card footer {

    margin-top: auto;

    padding-top: var(--space-24);

}

.testimonial-card strong {

    color: var(--color-white);

}


/* ==========================================================================
   CONTACT CARD
   ========================================================================== */

.contact-card {

    padding: var(--space-32);

    background: rgba(255,255,255,.04);

    border: 1px solid var(--color-border);

    border-radius: var(--radius-xl);

}

.contact-card h3 {

    margin-bottom: var(--space-16);

}

.contact-card p {

    margin: 0;

    color: var(--color-muted);

}


/* ==========================================================================
   GLASS CARD
   ========================================================================== */

.glass-card {

    background: rgba(255,255,255,.06);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    border: 1px solid rgba(255,255,255,.12);

}


/* ==========================================================================
   IMAGE OVERLAY
   ========================================================================== */

.card-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: flex-end;

    padding: var(--space-32);

    background: linear-gradient(
        transparent,
        rgba(0,0,0,.65)
    );

    opacity: 0;

    transition: opacity var(--transition-base);

}

.card:hover .card-overlay {

    opacity: 1;

}


/* ==========================================================================
   CARD TAG
   ========================================================================== */

.card-tag {

    display: inline-flex;

    align-items: center;

    padding: 8px 16px;

    border-radius: var(--radius-pill);

    background: rgba(200,156,61,.18);

    color: var(--color-gold);

    font-size: var(--text-xs);

    font-weight: var(--font-semibold);

    letter-spacing: var(--tracking-wide);

    text-transform: uppercase;

}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {

    .card-content {

        padding: var(--space-24);

    }

    .pillar-card .card-image {

        height: 96px;

    }

    .pillar-card .card-image img {

        width: 52px;
        height: 52px;

    }

}
/* ==========================================================================
   Rao Nete Website
   components.css
   Part 3 — Forms
   Version: 1.0
   ========================================================================== */


/* ==========================================================================
   FORM
   ========================================================================== */
   

.contact-form,
.form {

    display: flex;

    flex-direction: column;

    gap: var(--space-24);

}

.form-status {

    display: none;

    margin-bottom: 1.5rem;

    padding: 1rem 1.25rem;

    border-radius: 12px;

    font-size: 0.95rem;

    font-weight: 500;

    transition: all 0.3s ease;

}

.form-status.success {

    display: block;

    background: rgba(48, 140, 78, 0.12);

    border: 1px solid rgba(48, 140, 78, 0.25);

    color: #2F7A4A;

}

.form-status.error {

    display: block;

    background: rgba(184, 54, 54, 0.12);

    border: 1px solid rgba(184, 54, 54, 0.25);

    color: #B83636;

}


/* ==========================================================================
   FORM GROUP
   ========================================================================== */

.form-group {

    display: flex;

    flex-direction: column;

    gap: var(--space-8);

}


/* ==========================================================================
   LABELS
   ========================================================================== */

.form-group label {

    display: block;

    font-size: var(--text-sm);

    font-weight: var(--font-semibold);

    color: var(--color-white);

}


/* ==========================================================================
   INPUTS
   ========================================================================== */

.form-group input,
.form-group textarea,
.form-group select {

    width: 100%;

    min-height: var(--input-height);

    padding:
        var(--space-16)
        var(--space-20, 20px);

    background: rgba(255,255,255,.04);

    border: 1px solid var(--color-border);

    border-radius: var(--radius-md);

    color: var(--color-white);

    transition:
        border-color var(--transition-base),
        background var(--transition-base),
        box-shadow var(--transition-base);

}


/* ==========================================================================
   PLACEHOLDERS
   ========================================================================== */

.form-group input::placeholder,
.form-group textarea::placeholder {

    color: rgba(255,255,255,.45);

}


/* ==========================================================================
   TEXTAREA
   ========================================================================== */

.form-group textarea {

    min-height: 180px;

    resize: vertical;

}


/* ==========================================================================
   SELECT
   ========================================================================== */

.form-group select {

    appearance: none;

    -webkit-appearance: none;

    cursor: pointer;

    background-image:
        linear-gradient(45deg, transparent 50%, var(--color-gold) 50%),
        linear-gradient(135deg, var(--color-gold) 50%, transparent 50%);

    background-position:
        calc(100% - 24px) 50%,
        calc(100% - 18px) 50%;

    background-size: 6px 6px;

    background-repeat: no-repeat;

}


/* ==========================================================================
   FOCUS
   ========================================================================== */

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {

    border-color: var(--color-gold);

    background: rgba(255,255,255,.07);

    box-shadow: 0 0 0 4px rgba(200,156,61,.15);

}


/* ==========================================================================
   VALID
   ========================================================================== */

.form-group input:valid,
.form-group textarea:valid {

    border-color: rgba(63,140,84,.45);

}


/* ==========================================================================
   INVALID
   ========================================================================== */

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {

    border-color: rgba(199,74,74,.55);

}


/* ==========================================================================
   HELP TEXT
   ========================================================================== */

.form-help {

    font-size: var(--text-xs);

    color: var(--color-muted);

}


/* ==========================================================================
   ERROR MESSAGE
   ========================================================================== */

.form-error {

    display: none;

    font-size: var(--text-xs);

    color: var(--color-error);

}

.form-group.error .form-error {

    display: block;

}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {

    border-color: var(--color-error);

}


/* ==========================================================================
   SUCCESS MESSAGE
   ========================================================================== */

.form-success {

    display: none;

    color: var(--color-success);

    font-size: var(--text-sm);

    font-weight: var(--font-medium);

}

.form-success.active {

    display: block;

}


/* ==========================================================================
   REQUIRED MARKER
   ========================================================================== */

.required {

    color: var(--color-gold);

}


/* ==========================================================================
   CHECKBOX
   ========================================================================== */

.checkbox-group {

    display: flex;

    align-items: flex-start;

    gap: var(--space-12);

}

.checkbox-group input[type="checkbox"] {

    width: 20px;
    height: 20px;

    min-height: auto;

    margin-top: 2px;

    accent-color: var(--color-gold);

}

.checkbox-group label {

    margin: 0;

    color: var(--color-muted);

}


/* ==========================================================================
   FORM ACTIONS
   ========================================================================== */

.form-actions {

    display: flex;

    gap: var(--space-16);

    align-items: center;

    margin-top: var(--space-8);

}


/* ==========================================================================
   LOADING BUTTON
   ========================================================================== */

.btn-loading {

    position: relative;

    pointer-events: none;

    opacity: .8;

}

.btn-loading::after {

    content: "";

    width: 18px;
    height: 18px;

    margin-left: var(--space-12);

    border: 2px solid rgba(255,255,255,.25);

    border-top-color: currentColor;

    border-radius: 50%;

    animation: button-spinner .8s linear infinite;

}


/* ==========================================================================
   BUTTON SPINNER
   ========================================================================== */

@keyframes button-spinner {

    to {

        transform: rotate(360deg);

    }

}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {

    .form-actions {

        flex-direction: column;

        align-items: stretch;

    }

    .form-actions .btn {

        width: 100%;

    }

}
/* ==========================================================================
   Rao Nete Website
   components.css
   Part 4 — Navigation Components
   Version: 1.0
   ========================================================================== */


/* ==========================================================================
   NAVIGATION
   ========================================================================== */

.site-header {

    transition:
        background var(--transition-base),
        box-shadow var(--transition-base),
        backdrop-filter var(--transition-base);

}


/* ==========================================================================
   GLASS HEADER
   ========================================================================== */

.site-header.scrolled {

    background: rgba(13,43,30,.82);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

    box-shadow: var(--shadow-md);

}


/* ==========================================================================
   NAVIGATION LIST
   ========================================================================== */

.nav-menu {

    display: flex;

    align-items: center;

    gap: var(--space-32);

}

.nav-menu li {

    position: relative;

}


/* ==========================================================================
   NAVIGATION LINKS
   ========================================================================== */

.nav-menu a {

    position: relative;

    display: inline-flex;

    align-items: center;

    font-size: var(--text-sm);

    font-weight: var(--font-medium);

    color: var(--color-white);

    transition:
        color var(--transition-base);

}


/* ==========================================================================
   LINK UNDERLINE
   ========================================================================== */

.nav-menu a::after {

    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background: var(--color-gold);

    transition: width var(--transition-base);

}

.nav-menu a:hover,
.nav-menu a.active {

    color: var(--color-gold);

}

.nav-menu a:hover::after,
.nav-menu a.active::after {

    width: 100%;

}


/* ==========================================================================
   DROPDOWN
   ========================================================================== */

.has-dropdown {

    position: relative;

}

.dropdown-menu {

    position: absolute;

    top: calc(100% + 16px);
    left: 0;

    min-width: 220px;

    padding: var(--space-16);

    background: var(--color-deep-moss);

    border: 1px solid var(--color-border);

    border-radius: var(--radius-lg);

    box-shadow: var(--shadow-xl);

    opacity: 0;

    visibility: hidden;

    transform: translateY(12px);

    transition:
        opacity var(--transition-base),
        transform var(--transition-base),
        visibility var(--transition-base);

}

.has-dropdown:hover .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.dropdown-menu a {

    display: block;

    padding:
        12px
        16px;

    border-radius: var(--radius-sm);

}

.dropdown-menu a:hover {

    background: rgba(255,255,255,.06);

}


/* ==========================================================================
   MOBILE MENU BUTTON
   ========================================================================== */

.mobile-menu-button {

    position: relative;

    width: 48px;
    height: 48px;

    display: none;

    align-items: center;
    justify-content: center;

    background: transparent;

    border: none;

}


/* ==========================================================================
   HAMBURGER
   ========================================================================== */

.mobile-menu-button span {

    position: absolute;

    width: 28px;
    height: 2px;

    background: var(--color-white);

    transition: all .35s ease;

}

.mobile-menu-button span:nth-child(1) {

    transform: translateY(-8px);

}

.mobile-menu-button span:nth-child(2) {

    transform: translateY(0);

}

.mobile-menu-button span:nth-child(3) {

    transform: translateY(8px);

}


/* ==========================================================================
   ACTIVE HAMBURGER
   ========================================================================== */

.mobile-menu-button.active span:nth-child(1) {

    transform: rotate(45deg);

}

.mobile-menu-button.active span:nth-child(2) {

    opacity: 0;

}

.mobile-menu-button.active span:nth-child(3) {

    transform: rotate(-45deg);

}


/* ==========================================================================
   MOBILE NAVIGATION
   ========================================================================== */

@media (max-width: 768px) {

    .mobile-menu-button {

        display: flex;

    }

    .nav-menu {

        position: fixed;

        top: var(--header-height);
        left: 0;

        width: 100%;

        flex-direction: column;

        align-items: center;

        gap: var(--space-32);

        padding:
            var(--space-48)
            var(--space-24);

        background: var(--color-deep-moss);

        border-top: 1px solid var(--color-border);

        box-shadow: var(--shadow-xl);

        transform: translateY(-120%);

        opacity: 0;

        visibility: hidden;

        transition:
            transform var(--transition-base),
            opacity var(--transition-base),
            visibility var(--transition-base);

    }

    .nav-menu.active {

        transform: translateY(0);

        opacity: 1;

        visibility: visible;

    }

    .nav-menu li {

        width: 100%;

        text-align: center;

    }

    .nav-menu a {

        display: block;

        padding: var(--space-16);

        font-size: var(--text-lg);

    }

    .dropdown-menu {

        position: static;

        display: none;

        margin-top: var(--space-12);

        opacity: 1;

        visibility: visible;

        transform: none;

        box-shadow: none;

    }

    .has-dropdown.open .dropdown-menu {

        display: block;

    }

}


/* ==========================================================================
   SMALL MOBILE
   ========================================================================== */

@media (max-width: 480px) {

    .mobile-menu-button {

        width: 44px;
        height: 44px;

    }

    .mobile-menu-button span {

        width: 24px;

    }

}
/* ==========================================================================
   Rao Nete Website
   components.css
   Part 5 — Hero Components
   Version: 1.0
   ========================================================================== */


/* ==========================================================================
   HERO CONTENT
   ========================================================================== */

.hero-content {

    position: relative;

    z-index: 2;

}


/* ==========================================================================
   HERO EYEBROW
   ========================================================================== */

.hero-eyebrow {

    display: inline-flex;

    align-items: center;

    gap: var(--space-12);

    margin-bottom: var(--space-24);

    color: var(--color-gold);

    font-size: var(--text-sm);

    font-weight: var(--font-semibold);

    letter-spacing: var(--tracking-extra);

    text-transform: uppercase;

}

.hero-eyebrow::before,
.hero-eyebrow::after {

    content: "";

    width: 40px;
    height: 1px;

    background: rgba(200,156,61,.55);

}


/* ==========================================================================
   HERO TITLE
   ========================================================================== */

.hero-title {

    text-shadow:
        0 6px 30px rgba(0,0,0,.45);

}


/* ==========================================================================
   HERO SUBTITLE
   ========================================================================== */

.hero-subtitle {

    text-shadow:
        0 2px 16px rgba(0,0,0,.45);

}


/* ==========================================================================
   HERO ACTIONS
   ========================================================================== */

.hero-actions {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: var(--space-24);

    flex-wrap: wrap;

}


/* ==========================================================================
   HERO BUTTONS
   ========================================================================== */

.hero-actions .btn {

    min-width: 220px;

}

.hero-actions .btn-primary {

    box-shadow:
        0 12px 35px rgba(200,156,61,.35);

}

.hero-actions .btn-primary:hover {

    box-shadow:
        0 18px 45px rgba(200,156,61,.45);

}

.hero-actions .btn-secondary {

    background: rgba(255,255,255,.10);

}


/* ==========================================================================
   HERO SCROLL INDICATOR
   ========================================================================== */

.hero-scroll {

    display: flex;

    justify-content: center;

    margin-top: var(--space-96);

}

.hero-scroll a {

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: var(--space-12);

    color: rgba(255,255,255,.75);

    transition:
        color var(--transition-base),
        transform var(--transition-base);

}

.hero-scroll a:hover {

    color: var(--color-gold);

}


/* ==========================================================================
   SCROLL MOUSE
   ========================================================================== */

.scroll-mouse {

    position: relative;

    width: 30px;
    height: 50px;

    border: 2px solid rgba(255,255,255,.75);

    border-radius: 999px;

}

.scroll-wheel {

    position: absolute;

    left: 50%;
    top: 8px;

    width: 4px;
    height: 10px;

    margin-left: -2px;

    border-radius: 999px;

    background: var(--color-gold);

    animation: hero-scroll-wheel 2s infinite;

}


/* ==========================================================================
   SCROLL TEXT
   ========================================================================== */

.scroll-text {

    font-size: var(--text-xs);

    font-weight: var(--font-medium);

    letter-spacing: var(--tracking-wide);

    text-transform: uppercase;

}


/* ==========================================================================
   HERO DECORATIVE GLOW
   ========================================================================== */

.hero-glow {

    position: absolute;

    left: 50%;
    bottom: -220px;

    width: 700px;
    height: 700px;

    transform: translateX(-50%);

    border-radius: 50%;

    background:
        radial-gradient(
            rgba(58,168,200,.12),
            transparent 70%
        );

    pointer-events: none;

    z-index: 1;

}


/* ==========================================================================
   HERO DECORATIVE LEAFS
   ========================================================================== */

.hero-decoration {

    position: absolute;

    opacity: .12;

    pointer-events: none;

}

.hero-decoration-left {

    left: -60px;

    bottom: 10%;

}

.hero-decoration-right {

    right: -60px;

    top: 12%;

}


/* ==========================================================================
   HERO OVERLAY
   ========================================================================== */

.hero-overlay {

    backdrop-filter: blur(1px);

}


/* ==========================================================================
   HERO ANIMATIONS
   ========================================================================== */

.hero-title,
.hero-subtitle,
.hero-actions,
.hero-scroll {

    animation: hero-fade-up 1s ease both;

}

.hero-subtitle {

    animation-delay: .15s;

}

.hero-actions {

    animation-delay: .3s;

}

.hero-scroll {

    animation-delay: .5s;

}


/* ==========================================================================
   KEYFRAMES
   ========================================================================== */

@keyframes hero-fade-up {

    from {

        opacity: 0;

        transform: translateY(40px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

@keyframes hero-scroll-wheel {

    0% {

        opacity: 0;

        transform: translateY(0);

    }

    25% {

        opacity: 1;

    }

    75% {

        opacity: 1;

    }

    100% {

        opacity: 0;

        transform: translateY(18px);

    }

}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {

    .hero-actions {

        flex-direction: column;

    }

    .hero-actions .btn {

        width: 100%;

        min-width: auto;

    }

    .hero-scroll {

        margin-top: var(--space-64);

    }

    .hero-glow {

        width: 500px;
        height: 500px;

    }

    .hero-decoration {

        display: none;

    }

}


@media (max-width: 480px) {

    .hero-eyebrow::before,
    .hero-eyebrow::after {

        width: 24px;

    }

    .scroll-mouse {

        width: 26px;
        height: 42px;

    }

}
/* ==========================================================================
   Rao Nete Website
   components.css
   Part 6 — Timeline & FAQ Components
   Version: 1.0
   ========================================================================== */


/* ==========================================================================
   TIMELINE
   ========================================================================== */

.timeline {

    position: relative;

}

.timeline-item {

    position: relative;

    display: flex;

    align-items: flex-start;

    gap: var(--space-32);

}


/* ==========================================================================
   TIMELINE CONNECTOR
   ========================================================================== */

.timeline-item::before {

    content: "";

    position: absolute;

    left: 28px;
    top: 56px;

    width: 2px;
    height: calc(100% + var(--space-32));

    background: rgba(200,156,61,.22);

}

.timeline-item:last-child::before {

    display: none;

}


/* ==========================================================================
   TIMELINE NUMBER
   ========================================================================== */

.timeline-number {

    position: relative;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 56px;
    height: 56px;

    border-radius: 50%;

    background: var(--color-gold);

    color: var(--color-forest);

    font-size: var(--text-base);

    font-weight: var(--font-bold);

    box-shadow: var(--shadow-md);

    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base);

}

.timeline-item:hover .timeline-number {

    transform: scale(1.08);

    box-shadow: var(--shadow-lg);

}


/* ==========================================================================
   TIMELINE CARD
   ========================================================================== */

.timeline-content {

    flex: 1;

    background: rgba(255,255,255,.04);

    border: 1px solid var(--color-border);

    border-radius: var(--radius-xl);

    padding: var(--space-32);

    transition:
        transform var(--transition-base),
        border-color var(--transition-base),
        box-shadow var(--transition-base);

}

.timeline-content:hover {

    transform: translateY(-4px);

    border-color: rgba(200,156,61,.35);

    box-shadow: var(--shadow-lg);

}

.timeline-content h3 {

    margin-bottom: var(--space-16);

}

.timeline-content p {

    margin: 0;

    color: var(--color-muted);

}


/* ==========================================================================
   FAQ LIST
   ========================================================================== */

.faq-list {

    display: flex;

    flex-direction: column;

    gap: var(--space-24);

}


/* ==========================================================================
   FAQ ITEM
   ========================================================================== */

.faq-item {

    overflow: hidden;

    background: rgba(255,255,255,.04);

    border: 1px solid var(--color-border);

    border-radius: var(--radius-lg);

    transition:
        border-color var(--transition-base),
        box-shadow var(--transition-base);

}

.faq-item[open] {

    border-color: rgba(200,156,61,.35);

    box-shadow: var(--shadow-md);

}


/* ==========================================================================
   FAQ SUMMARY
   ========================================================================== */

.faq-item summary {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: var(--space-24);

    padding:
        var(--space-24)
        var(--space-32);

    cursor: pointer;

    font-weight: var(--font-semibold);

    user-select: none;

}

.faq-item summary:hover {

    background: rgba(255,255,255,.05);

}


/* ==========================================================================
   FAQ ICON
   ========================================================================== */

.faq-item summary::after {

    content: "+";

    flex-shrink: 0;

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(200,156,61,.12);

    color: var(--color-gold);

    font-size: 1.25rem;

    font-weight: var(--font-bold);

    transition:
        transform var(--transition-base),
        background var(--transition-base);

}

.faq-item[open] summary::after {

    content: "−";

    transform: rotate(180deg);

}


/* ==========================================================================
   FAQ ANSWER
   ========================================================================== */

.faq-answer {

    padding:
        0
        var(--space-32)
        var(--space-32);

}

.faq-answer p {

    margin: 0;

    color: var(--color-muted);

}


/* ==========================================================================
   FAQ DIVIDER
   ========================================================================== */

.faq-item[open] summary {

    border-bottom: 1px solid rgba(255,255,255,.08);

    margin-bottom: var(--space-24);

}


/* ==========================================================================
   HIGHLIGHT BOX
   ========================================================================== */

.highlight-box {

    padding: var(--space-32);

    border-left: 4px solid var(--color-gold);

    border-radius: var(--radius-md);

    background: rgba(200,156,61,.06);

}

.highlight-box p:last-child {

    margin-bottom: 0;

}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {

    .timeline-item {

        gap: var(--space-20);

    }

    .timeline-item::before {

        left: 20px;

    }

    .timeline-number {

        width: 40px;
        height: 40px;

        font-size: var(--text-sm);

    }

    .timeline-content {

        padding: var(--space-24);

    }

    .faq-item summary {

        padding:
            var(--space-20)
            var(--space-24);

    }

    .faq-answer {

        padding:
            0
            var(--space-24)
            var(--space-24);

    }

}


@media (max-width: 480px) {

    .timeline-item::before {

        left: 19px;

    }

    .faq-item summary::after {

        width: 28px;
        height: 28px;

    }

}
/* ==========================================================================
   Rao Nete Website
   components.css
   Part 7 — Footer & Utility Components
   Version: 1.0
   ========================================================================== */


/* ==========================================================================
   FOOTER LOGO
   ========================================================================== */

.footer-logo {

    display: inline-flex;

    align-items: center;

    transition:
        transform var(--transition-base),
        opacity var(--transition-base);

}

.footer-logo:hover {

    transform: scale(1.04);

}

.footer-logo img {

    width: 150px;
    height: auto;

}


/* ==========================================================================
   FOOTER TITLES
   ========================================================================== */

.footer-column h3 {

    margin-bottom: var(--space-24);

    color: var(--color-white);

    font-size: var(--text-lg);

}


/* ==========================================================================
   FOOTER LINKS
   ========================================================================== */

.footer-links {

    display: flex;

    flex-direction: column;

    gap: var(--space-16);

}

.footer-links a {

    position: relative;

    display: inline-flex;

    align-items: center;

    width: fit-content;

    color: var(--color-muted);

    transition:
        color var(--transition-base),
        transform var(--transition-base);

}

.footer-links a::before {

    content: "→";

    opacity: 0;

    margin-right: 0;

    transition:
        opacity var(--transition-base),
        margin-right var(--transition-base);

}

.footer-links a:hover {

    color: var(--color-gold);

    transform: translateX(4px);

}

.footer-links a:hover::before {

    opacity: 1;

    margin-right: 8px;

}


/* ==========================================================================
   FOOTER CONTACT
   ========================================================================== */

.footer-contact {

    display: flex;

    flex-direction: column;

    gap: var(--space-16);

}

.footer-contact li {

    color: var(--color-muted);

    line-height: 1.7;

}


/* ==========================================================================
   SOCIAL LINKS
   ========================================================================== */

.social-links {

    display: flex;

    flex-wrap: wrap;

    gap: var(--space-16);

}

.social-link {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    background: rgba(255,255,255,.05);

    border: 1px solid var(--color-border);

    transition:
        transform var(--transition-base),
        background var(--transition-base),
        border-color var(--transition-base);

}

.social-link:hover {

    transform: translateY(-4px);

    background: rgba(200,156,61,.12);

    border-color: rgba(200,156,61,.35);

}

.social-link img,
.social-link svg {

    width: 22px;
    height: 22px;

}


/* ==========================================================================
   WHATSAPP FLOATING BUTTON
   ========================================================================== */

.whatsapp-button {

    display: flex;

    align-items: center;
    justify-content: center;

    overflow: hidden;

}

.whatsapp-button::before {

    content: "";

    position: absolute;

    inset: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.18);

    transform: scale(0);

    transition: transform var(--transition-base);

}

.whatsapp-button:hover::before {

    transform: scale(1);

}

.whatsapp-button img {

    position: relative;

    z-index: 2;

}


/* ==========================================================================
   BACK TO TOP
   ========================================================================== */

.back-to-top {

    position: fixed;

    right: var(--space-32);

    bottom: 112px;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 52px;
    height: 52px;

    border-radius: 50%;

    background: var(--color-card);

    border: 1px solid var(--color-border);

    color: var(--color-white);

    opacity: 0;

    visibility: hidden;

    transform: translateY(16px);

    transition:
        opacity var(--transition-base),
        visibility var(--transition-base),
        transform var(--transition-base);

    z-index: var(--z-tooltip);

}

.back-to-top.visible {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

}

.back-to-top:hover {

    background: var(--color-gold);

    color: var(--color-forest);

}


/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.rounded {

    border-radius: var(--radius-xl);

}

.shadow {

    box-shadow: var(--shadow-lg);

}

.border {

    border: 1px solid var(--color-border);

}

.glass {

    background: rgba(255,255,255,.05);

    backdrop-filter: blur(18px);

    -webkit-backdrop-filter: blur(18px);

}

.overflow-hidden {

    overflow: hidden;

}

.w-100 {

    width: 100%;

}

.h-100 {

    height: 100%;

}

.mx-auto {

    margin-inline: auto;

}

.mb-0 {

    margin-bottom: 0;

}


/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 768px) {

    .footer-column {

        text-align: center;

    }

    .footer-links,
    .footer-contact {

        align-items: center;

    }

    .social-links {

        justify-content: center;

    }

    .back-to-top {

        right: var(--space-24);

        bottom: 96px;

    }

}


@media (max-width: 480px) {

    .social-link {

        width: 44px;
        height: 44px;

    }

    .social-link img,
    .social-link svg {

        width: 20px;
        height: 20px;

    }

    .back-to-top {

        width: 48px;
        height: 48px;

        right: var(--space-16);

        bottom: 84px;

    }

}
/* ==========================================================================
   Rao Nete Website
   components.css
   Part 8 — Animations & Micro-Interactions
   Version: 1.0
   ========================================================================== */


/* ==========================================================================
   GLOBAL TRANSITIONS
   ========================================================================== */

a,
button,
input,
textarea,
select,
img {

    transition:
        color var(--transition-base),
        background var(--transition-base),
        border-color var(--transition-base),
        opacity var(--transition-base),
        transform var(--transition-base);

}


/* ==========================================================================
   FADE ANIMATIONS
   ========================================================================== */

.fade-in {

    opacity: 0;

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.fade-in.visible {

    opacity: 1;

}


/* ==========================================================================
   FADE UP
   ========================================================================== */

.fade-up {

    opacity: 0;

    transform: translateY(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.fade-up.visible {

    opacity: 1;

    transform: translateY(0);

}


/* ==========================================================================
   FADE LEFT
   ========================================================================== */

.fade-left {

    opacity: 0;

    transform: translateX(-40px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.fade-left.visible {

    opacity: 1;

    transform: translateX(0);

}


/* ==========================================================================
   FADE RIGHT
   ========================================================================== */

.fade-right {

    opacity: 0;

    transform: translateX(40px);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.fade-right.visible {

    opacity: 1;

    transform: translateX(0);

}


/* ==========================================================================
   SCALE IN
   ========================================================================== */

.scale-in {

    opacity: 0;

    transform: scale(.9);

    transition:
        opacity .8s ease,
        transform .8s ease;

}

.scale-in.visible {

    opacity: 1;

    transform: scale(1);

}


/* ==========================================================================
   STAGGER DELAYS
   ========================================================================== */

.delay-100 {

    transition-delay: .1s;

}

.delay-200 {

    transition-delay: .2s;

}

.delay-300 {

    transition-delay: .3s;

}

.delay-400 {

    transition-delay: .4s;

}

.delay-500 {

    transition-delay: .5s;

}


/* ==========================================================================
   IMAGE REVEAL
   ========================================================================== */

.reveal-image {

    overflow: hidden;

}

.reveal-image img {

    transform: scale(1.08);

    transition:
        transform 1.2s ease;

}

.reveal-image.visible img {

    transform: scale(1);

}


/* ==========================================================================
   FLOAT
   ========================================================================== */

.float {

    animation: float-animation 6s ease-in-out infinite;

}

@keyframes float-animation {

    0%,
    100% {

        transform: translateY(0);

    }

    50% {

        transform: translateY(-10px);

    }

}


/* ==========================================================================
   GLOW
   ========================================================================== */

.glow:hover {

    box-shadow:
        0 0 30px rgba(200,156,61,.28);

}


/* ==========================================================================
   SHINE EFFECT
   ========================================================================== */

.shine {

    position: relative;

    overflow: hidden;

}

.shine::before {

    content: "";

    position: absolute;

    top: 0;
    left: -120%;

    width: 60%;
    height: 100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.18),
            transparent
        );

    transform: skewX(-25deg);

}

.shine:hover::before {

    animation: shine-animation 1.2s ease;

}

@keyframes shine-animation {

    to {

        left: 150%;

    }

}


/* ==========================================================================
   PULSE
   ========================================================================== */

.pulse {

    animation: pulse-animation 2.5s infinite;

}

@keyframes pulse-animation {

    0% {

        box-shadow: 0 0 0 0 rgba(200,156,61,.35);

    }

    70% {

        box-shadow: 0 0 0 18px rgba(200,156,61,0);

    }

    100% {

        box-shadow: 0 0 0 0 rgba(200,156,61,0);

    }

}


/* ==========================================================================
   SPINNER
   ========================================================================== */

.spinner {

    display: inline-block;

    width: 32px;
    height: 32px;

    border: 3px solid rgba(255,255,255,.18);

    border-top-color: var(--color-gold);

    border-radius: 50%;

    animation: spinner-animation .9s linear infinite;

}

@keyframes spinner-animation {

    to {

        transform: rotate(360deg);

    }

}


/* ==========================================================================
   SKELETON LOADING
   ========================================================================== */

.skeleton {

    border-radius: var(--radius-md);

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.05),
            rgba(255,255,255,.10),
            rgba(255,255,255,.05)
        );

    background-size: 200% 100%;

    animation: skeleton-loading 1.5s infinite linear;

}

@keyframes skeleton-loading {

    from {

        background-position: 200% 0;

    }

    to {

        background-position: -200% 0;

    }

}


/* ==========================================================================
   HOVER LIFT
   ========================================================================== */

.hover-lift {

    transition:
        transform var(--transition-base),
        box-shadow var(--transition-base);

}

.hover-lift:hover {

    transform: translateY(-8px);

    box-shadow: var(--shadow-lg);

}


/* ==========================================================================
   REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {

        animation: none !important;

        transition: none !important;

        scroll-behavior: auto !important;

    }

}


/* ==========================================================================
   END OF components.css
   ========================================================================== */