/* ===================== VARIABLES ===================== */
:root {
    --black: #111111;
    --yellow: #FFD400;
    --yellow-hover: #e6bf00;
    --white: #ffffff;
    --gray: #888888;
    --light-gray: #f5f5f5;
    --dark-gray: #1a1a1a;
    --darker: #0d0d0d;
    --transition: all 0.3s ease;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --radius: 12px;
}

/* ===================== RESET ===================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    overflow: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body > section {
    scroll-snap-align: start;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 110px 0 80px;
}

/* ===================== FULLPAGE NAVIGATION ===================== */
.fullpage {
    --current: 0;
    --page-h: 100vh;
    transform: translateY(calc(var(--current) * -1 * var(--page-h)));
    transition: transform 0.8s ease;
}

@supports (height: 100svh) {
    .fullpage {
        --page-h: 100svh;
    }
}

.page {
    height: var(--page-h);
    overflow-y: auto;
    overflow-x: hidden;
    scroll-snap-align: start;
    -webkit-overflow-scrolling: touch;
    position: relative;
    background: var(--black);
}

body {
    background-color: var(--black);
    background-image: linear-gradient(rgba(17, 17, 17, 0.6), rgba(17, 17, 17, 0.6)),
                      url('../images/hero/hero.jpg');
    background-repeat: no-repeat, no-repeat;
    background-position: center center, center center;
    background-size: cover, cover;
    background-attachment: fixed, fixed;
}

#home {
    background: transparent;
}

#home::before {
    display: none;
}

.highlight {
    color: var(--yellow);
}

/* ===================== BUTTONS ===================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: none;
    letter-spacing: 0.3px;
}

.btn-sm {
    padding: 10px 22px;
    font-size: 13px;
}

.btn-lg {
    padding: 18px 44px;
    font-size: 17px;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 212, 0, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--yellow);
    border: 2px solid var(--yellow);
}

.btn-outline:hover {
    background: var(--yellow);
    color: var(--black);
}

/* ===================== SECTION HEADER ===================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(255, 212, 0, 0.1);
    color: var(--yellow);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.section-desc {
    color: var(--gray);
    font-size: 16px;
    max-width: 500px;
    margin: 0 auto;
}

/* ===================== HEADER ===================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(17, 17, 17, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
}

.logo-icon {
    color: var(--yellow);
    font-size: 26px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--yellow);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--yellow);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
}

/* ===================== HERO ===================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    position: relative;
    padding: 90px 0 30px;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 212, 0, 0.15);
    color: var(--yellow);
    padding: 5px 18px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 212, 0, 0.2);
    animation: fadeInUp 0.6s ease;
}

.hero-title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin-bottom: 16px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

/* Gallery inside hero */
.hero-gallery {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.35s both;
}

/* Stats */
.hero-stats {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: nowrap;
    gap: 32px;
    padding-top: 4px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.stat-plus,
.stat-percent {
    font-size: 20px;
    font-weight: 700;
    color: var(--yellow);
    margin-left: 2px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* ===================== ABOUT ===================== */
.about {
    background: var(--dark-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
}

.about-image img {
    border-radius: var(--radius);
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: var(--yellow);
    color: var(--black);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-text p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    font-size: 16px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 32px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.about-feature i {
    color: var(--yellow);
}

/* ===================== SERVICES ===================== */
.services {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--yellow);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 212, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--yellow);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--yellow);
    color: var(--black);
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card p {
    color: var(--gray);
    font-size: 14px;
}

/* ===================== WHY US ===================== */
.why-us {
    background: var(--dark-gray);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    text-align: center;
    padding: 36px 24px;
    border-radius: var(--radius);
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--yellow);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 212, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--yellow);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--yellow);
    color: var(--black);
}

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--gray);
    font-size: 14px;
}

/* ===================== GALLERY ===================== */
.gallery {
    background: var(--black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 16 / 9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay span {
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    padding: 8px 20px;
    border: 2px solid var(--yellow);
    border-radius: 50px;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay span {
    transform: translateY(0);
}

/* ===================== REVIEWS ===================== */
.reviews {
    background: var(--dark-gray);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 32px 28px;
    transition: var(--transition);
}

.review-card:hover {
    border-color: var(--yellow);
    transform: translateY(-4px);
}

.review-stars {
    color: var(--yellow);
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 212, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 18px;
}

.review-name {
    display: block;
    font-weight: 600;
    font-size: 15px;
}

.review-location {
    display: block;
    font-size: 12px;
    color: var(--gray);
}

/* ===================== COMMENTS ===================== */
.comments-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.comments-header {
    text-align: center;
    margin-bottom: 24px;
}

.comments-header h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
}

.comments-header p {
    color: var(--gray);
    font-size: 14px;
}

.comments-status {
    text-align: center;
    font-size: 14px;
    margin-bottom: 16px;
    display: none;
}

.comments-status.success {
    display: block;
    color: #28a745;
}

.comments-status.error {
    display: block;
    color: #ff5252;
}

.comment-form {
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
}

.comment-form-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 12px;
}

.comment-form-row input[type="text"] {
    flex: 1;
    padding: 12px 16px;
    background: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.comment-form-row input:focus,
.comment-form textarea:focus {
    border-color: var(--yellow);
}

.comment-form textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
    resize: vertical;
    margin-bottom: 16px;
}

.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: var(--gray);
}

.comment-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.rating-label {
    font-size: 13px;
    color: var(--gray);
}

.stars {
    display: inline-flex;
    gap: 3px;
}

.stars i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: var(--transition);
}

.stars i.selected,
.stars i.hovered {
    color: var(--yellow);
}

.comment-form .btn {
    width: 100%;
    justify-content: center;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.comments-loading,
.comments-empty {
    color: var(--gray);
    text-align: center;
    font-size: 14px;
}

.comment-item {
    background: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 20px;
}

.comment-item-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.comment-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 212, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 16px;
}

.comment-meta {
    display: flex;
    flex-direction: column;
}

.comment-author {
    font-weight: 600;
    font-size: 15px;
}

.comment-date {
    font-size: 12px;
    color: var(--gray);
}

.comment-stars {
    margin-bottom: 8px;
    font-size: 13px;
}

.comment-stars i.lit {
    color: var(--yellow);
}

.comment-stars i.dim {
    color: rgba(255, 255, 255, 0.2);
}

.comment-body {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    line-height: 1.7;
}

/* ===================== CTA BANNER ===================== */
.cta-banner {
    background: linear-gradient(135deg, var(--yellow) 0%, #e6bf00 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-banner::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;
}

.cta-banner h2 {
    font-size: 38px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 16px;
    position: relative;
}

.cta-banner p {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.cta-banner .btn-primary {
    background: var(--black);
    color: var(--white);
    position: relative;
}

.cta-banner .btn-primary:hover {
    background: var(--darker);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* ===================== CONTACT ===================== */
.contact {
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

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

.contact-card {
    background: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--yellow);
    transform: translateX(5px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 212, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 20px;
    margin-bottom: 16px;
}

.contact-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-card a,
.contact-card p {
    color: var(--gray);
    font-size: 14px;
}

.contact-card a:hover {
    color: var(--yellow);
}

/* Form */
.contact-form {
    background: var(--dark-gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    padding: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--yellow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23888' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-group option {
    background: var(--dark-gray);
    color: var(--white);
}

.btn-submit {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 16px;
}

/* ===================== FOOTER ===================== */
.footer {
    background: var(--darker);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand p {
    color: var(--gray);
    font-size: 14px;
    margin: 16px 0 20px;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--yellow);
    color: var(--black);
}

.footer-links h3,
.footer-contact h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--gray);
    font-size: 14px;
}

.footer-links ul li a:hover {
    color: var(--yellow);
    padding-left: 5px;
}

.footer-contact p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact p i {
    color: var(--yellow);
    width: 16px;
}

.footer-contact a:hover {
    color: var(--yellow);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
}

.footer-seo {
    max-width: 700px;
    margin: 0 auto;
    padding: 20px 0 8px;
    text-align: center;
}

.footer-seo p {
    color: var(--gray);
    font-size: 12px;
    line-height: 1.7;
}

.footer-seo strong {
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 13px;
}

/* ===================== SCROLL TOP ===================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--yellow);
    color: var(--black);
    border: none;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--yellow-hover);
    transform: translateY(-3px);
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    transform: translateY(-90px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-float:hover {
    background: #1ebe5b;
    transform: translateY(-90px) scale(1.08);
    color: #fff;
}

.whatsapp-float::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.5);
    animation: whatsapp-pulse 1.8s ease-out infinite;
    z-index: -1;
}

.whatsapp-tip {
    position: absolute;
    right: 74px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--dark-gray);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:hover .whatsapp-tip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsapp-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

/* ===================== ANIMATIONS ===================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 42px;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section {
        padding: 100px 0 60px;
    }

    .section-title {
        font-size: 28px;
    }

    /* Menu */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px;
        gap: 24px;
        transition: 0.3s ease;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        font-size: 18px;
    }

    .menu-toggle {
        display: block;
    }

    .nav-actions .btn-outline {
        display: none;
    }

    /* Hero */
    .hero-title {
        font-size: 30px;
    }

    .hero-text {
        font-size: 14px;
        margin-bottom: 18px;
    }

    .hero-buttons {
        margin-bottom: 20px;
    }

    .hero-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-label {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
    }

    /* Grids */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gallery-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    .contact-form {
        padding: 24px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 550px) {
    .comment-form-row {
        flex-direction: column;
        align-items: stretch;
    }

    .comment-rating {
        justify-content: center;
    }

    .services-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-card,
    .why-card {
        padding: 20px 14px;
    }

    .service-icon,
    .why-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-card h3,
    .why-card h3 {
        font-size: 14px;
    }

    .service-card p,
    .why-card p {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hero {
        align-items: flex-start;
        padding-top: 80px;
        padding-bottom: 20px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-badge {
        padding: 4px 14px;
        font-size: 10px;
        margin-bottom: 10px;
    }

    .hero-text {
        font-size: 12px;
        margin-bottom: 12px;
    }

    .hero-buttons {
        gap: 8px;
        margin-bottom: 14px;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-gallery {
        margin-bottom: 14px;
    }

    .hero-stats {
        gap: 14px;
    }

    .stat-number {
        font-size: 24px;
    }

    .stat-label {
        font-size: 10px;
    }

    .cta-banner {
        display: block;
        padding-top: 130px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner h2 {
        font-size: 26px;
    }

    .contact-card {
        padding: 18px;
    }
}
