@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap");

:root {
    --bg-900: #050505;
    --bg-850: #0b0b10;
    --bg-800: #121218;
    --bg-750: #171720;
    --text-main: #f5f6f8;
    --text-muted: #a5a9b3;
    --accent: #f2b643;
    --accent-soft: rgba(242, 182, 67, 0.18);
    --accent-glow: rgba(242, 182, 67, 0.35);
    --line: rgba(255, 255, 255, 0.08);
    --max-width: 1200px;
    --radius-lg: 18px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --font-body: "Manrope", sans-serif;
    --font-display: "Rajdhani", sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background:
        radial-gradient(1200px 600px at 10% -10%, rgba(242, 182, 67, 0.15), transparent 60%),
        radial-gradient(900px 400px at 90% 0%, rgba(64, 108, 255, 0.12), transparent 60%),
        linear-gradient(180deg, var(--bg-900) 0%, #070708 40%, #0b0b10 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    padding-bottom: 80px;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.06), transparent 45%),
        radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.04), transparent 40%),
        repeating-linear-gradient(120deg, rgba(255, 255, 255, 0.03) 0, rgba(255, 255, 255, 0.03) 1px, transparent 1px, transparent 80px);
    pointer-events: none;
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    width: 520px;
    height: 520px;
    right: -120px;
    bottom: -140px;
    background: radial-gradient(circle, rgba(242, 182, 67, 0.18), transparent 70%);
    filter: blur(40px);
    opacity: 0.8;
    z-index: -1;
    pointer-events: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s, background 0.3s, border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

p {
    color: var(--text-muted);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(7, 7, 10, 0.9);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 1rem 0;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1.2rem;
    font-weight: 700;
}

.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(242, 182, 67, 0.25), rgba(242, 182, 67, 0.05));
    border: 1px solid rgba(242, 182, 67, 0.4);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
}

.logo-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--accent);
    filter: drop-shadow(0 0 8px var(--accent-glow));
}

.logo-text {
    color: var(--text-main);
}

.nav-links {
    display: flex;
    gap: 1.8rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-weight: 600;
    position: relative;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--accent);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 86vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--line);
    background-image:
        linear-gradient(120deg, rgba(5, 5, 8, 0.85), rgba(5, 5, 8, 0.45)),
        url("images/hero2.jpg");
    background-size: cover;
    background-position: center;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 5, 8, 0.15) 0%, rgba(5, 5, 8, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding: 6rem 0;
    text-align: left;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(242, 182, 67, 0.3);
    background: rgba(242, 182, 67, 0.12);
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1.6rem;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    line-height: 1.05;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 680px;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-button {
    background: linear-gradient(135deg, #f2b643, #f7d27c);
    color: #0b0b10;
    border: none;
    padding: 1rem 2.2rem;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(242, 182, 67, 0.35);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(242, 182, 67, 0.45);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--line);
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    border-color: rgba(242, 182, 67, 0.5);
    box-shadow: 0 0 20px rgba(242, 182, 67, 0.15);
}

.hero-stats {
    margin-top: 2.8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.2rem;
}

.hero-stat {
    padding: 1rem 1.2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: rgba(12, 12, 16, 0.7);
}

.hero-stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--accent);
}

.hero-stat span {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.2rem;
}

.section-title span {
    border-bottom: 2px solid var(--accent);
    padding-bottom: 10px;
}

.section-lead {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
    color: var(--text-muted);
}

.text-centre {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.card {
    background: linear-gradient(145deg, rgba(19, 19, 26, 0.95), rgba(10, 10, 15, 0.95));
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(242, 182, 67, 0.45);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(242, 182, 67, 0.18);
}

.card-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border: 1px solid rgba(242, 182, 67, 0.3);
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}

.card p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.card-link {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: auto;
}

main h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.6rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

main h2 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 2.5rem 0 1rem;
}

form {
    max-width: 100%;
    margin: 0 auto;
    background: rgba(12, 12, 16, 0.8);
    padding: 2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(6px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label,
label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

input,
textarea,
select {
    width: 100%;
    padding: 1rem;
    background: rgba(9, 9, 12, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
    border-radius: var(--radius-sm);
    font-family: inherit;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(242, 182, 67, 0.6);
    box-shadow: 0 0 0 3px rgba(242, 182, 67, 0.15);
}

button[type="submit"],
#send-comment {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #f2b643, #f7d27c);
    color: #0b0b10;
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    border-radius: 999px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

button[type="submit"]:hover,
#send-comment:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(242, 182, 67, 0.35);
}

.contact-form {
    margin-top: 2rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.gallery-grid img {
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.gallery-grid img:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.testimonial {
    background: linear-gradient(145deg, rgba(19, 19, 26, 0.95), rgba(10, 10, 15, 0.95));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin-top: 1.5rem;
}

.stars {
    color: var(--accent);
    letter-spacing: 3px;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.testimonial span {
    display: block;
    margin-top: 0.75rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.rating-container {
    margin-top: 2.5rem;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    background: rgba(12, 12, 16, 0.75);
}

.rating {
    display: flex;
    gap: 0.6rem;
    margin: 1rem 0;
}

.rating svg {
    width: 28px;
    height: 28px;
    fill: #2a2a33;
    cursor: pointer;
    transition: transform 0.2s ease, fill 0.2s ease;
}

.rating svg:hover {
    transform: scale(1.05);
}

.rating-message {
    color: var(--text-muted);
}

footer {
    background-color: #050505;
    border-top: 1px solid var(--line);
    padding: 3.5rem 0 2rem;
    color: var(--text-muted);
    margin-top: auto;
}

.footer-content,
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

footer h4 {
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.footer-links {
    display: grid;
    gap: 0.6rem;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--line);
    padding-top: 1.5rem;
    font-size: 0.8rem;
}

.whatsapp-float {
    position: fixed;
    width: 58px;
    height: 58px;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25d366, #1ebe5b);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: pulse-green 2s infinite;
}

.whatsapp-float:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

@keyframes pulse-green {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .hero-content {
        padding: 5rem 0;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(5, 5, 8, 0.95);
        flex-direction: column;
        padding: 2rem;
        border-bottom: 1px solid var(--line);
        gap: 1.2rem;
    }

    .nav-links.show {
        display: flex;
    }

    .hero {
        min-height: auto;
    }

    .hero-content {
        text-align: center;
        padding: 5rem 0;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .cta-button,
    .btn-secondary {
        width: 100%;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
