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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background: #080d1d;
    color: #ffffff;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1220px;
    margin: auto;
}

/* HEADER */
.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1220px;
    z-index: 999;
    background: rgba(8, 13, 29, 0.65);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(216, 189, 130, 0.22);
    border-radius: 22px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px;
}

.logo-area img {
    height: 72px;
    transition: 0.3s ease;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 26px;
}

.main-nav a {
    color: #f7edd8;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #d8bd82;
}

.header-phone {
    color: #080d1d;
    background: linear-gradient(135deg, #f7edd8, #d8bd82);
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
}

/* BUTTONS */
.btn-primary,
.btn-glass {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 700;
    transition: 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #f7edd8, #d8bd82);
    color: #080d1d;
    box-shadow: 0 15px 40px rgba(216, 189, 130, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 60px rgba(216, 189, 130, 0.35);
}

.btn-glass {
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(12px);
}

.btn-glass:hover {
    border-color: #d8bd82;
    color: #d8bd82;
}

/* HERO */
.hero-premium {
    position: relative;
    min-height: 100vh;
    background: url('/assets/img/hero-consultanta.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-premium::after {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(216, 189, 130, 0.18);
    border-radius: 32px;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(216,189,130,0.12), transparent 25%),
        linear-gradient(90deg, rgba(8,13,29,0.96) 0%, rgba(8,13,29,0.86) 36%, rgba(8,13,29,0.35) 70%, rgba(8,13,29,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 110px;
}

.hero-left {
    max-width: 660px;
    animation: fadeUp 1s ease both;
}

.hero-logo {
    width: 190px;
    margin-bottom: 26px;
    filter: drop-shadow(0 18px 35px rgba(0,0,0,0.45));
}

.hero-left h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.05;
    font-weight: 600;
    color: #f7edd8;
    margin-bottom: 18px;
}

.hero-left h1 span {
    color: #d8bd82;
}

.hero-left h3 {
    color: #ffffff;
    font-size: 23px;
    margin-bottom: 14px;
}

.hero-left p {
    color: #e8e1d3;
    max-width: 560px;
    font-size: 18px;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

.hero-stats {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
}

.hero-stats div {
    min-width: 155px;
    padding: 18px 16px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(216,189,130,0.25);
    border-radius: 20px;
    backdrop-filter: blur(12px);
}

.hero-stats strong {
    display: block;
    color: #d8bd82;
    font-size: 20px;
    margin-bottom: 4px;
}

.hero-stats span {
    color: #f7edd8;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* SECTIONS */
.services-premium,
.about-premium,
.process-premium,
.gallery-premium,
.cta-premium {
    padding: 95px 0;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 55px;
}

.section-heading span,
.about-content span,
.cta-premium span {
    color: #d8bd82;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
}

.section-heading h2,
.about-content h2,
.cta-premium h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #f7edd8;
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    margin: 14px 0;
}

.section-heading p,
.about-content p,
.cta-premium p {
    color: #bfc5d6;
}

/* SERVICES */
.services-premium {
    background:
        radial-gradient(circle at top left, rgba(216,189,130,0.08), transparent 30%),
        #080d1d;
}

.premium-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.premium-card {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(216,189,130,0.18);
    border-radius: 28px;
    overflow: hidden;
    transition: 0.35s;
    box-shadow: 0 25px 70px rgba(0,0,0,0.22);
}

.premium-card:hover {
    transform: translateY(-8px);
    border-color: rgba(216,189,130,0.45);
}

.premium-card img {
    height: 210px;
    width: 100%;
    object-fit: cover;
}

.premium-card-content {
    padding: 24px;
}

.premium-card h3 {
    color: #f7edd8;
    margin-bottom: 10px;
    font-size: 21px;
}

.premium-card p {
    color: #bfc5d6;
    font-size: 15px;
    margin-bottom: 16px;
}

.premium-card a {
    color: #d8bd82;
    font-weight: 700;
}

/* ABOUT */
.about-premium {
    background: linear-gradient(180deg, #080d1d, #101832);
}

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

.about-image img {
    border-radius: 34px;
    border: 1px solid rgba(216,189,130,0.22);
    box-shadow: 0 35px 90px rgba(0,0,0,0.35);
}

.about-content ul {
    margin: 26px 0;
    list-style: none;
}

.about-content li {
    color: #f7edd8;
    padding: 13px 0 13px 30px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: relative;
}

.about-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d8bd82;
    font-weight: 800;
}

/* PROCESS */
.process-premium {
    background:
        radial-gradient(circle at center, rgba(216,189,130,0.08), transparent 35%),
        #080d1d;
}

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

.process-card {
    padding: 34px;
    border-radius: 28px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(216,189,130,0.18);
    transition: 0.3s;
}

.process-card:hover {
    transform: translateY(-6px);
    border-color: rgba(216,189,130,0.45);
}

.process-card strong {
    color: #d8bd82;
    font-size: 28px;
}

.process-card h3 {
    color: #f7edd8;
    margin: 12px 0;
}

.process-card p {
    color: #bfc5d6;
}

/* GALLERY */
.gallery-premium {
    background: #101832;
}

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

.gallery-grid img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 26px;
    border: 1px solid rgba(216,189,130,0.18);
    transition: 0.35s;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    border-color: rgba(216,189,130,0.45);
}

/* CTA */
.cta-premium {
    text-align: center;
    background:
        linear-gradient(rgba(8,13,29,0.88), rgba(8,13,29,0.92)),
        url('/assets/img/hero-consultanta.jpg') center/cover no-repeat;
}

.cta-premium p {
    max-width: 700px;
    margin: 0 auto 28px;
}

/* FOOTER */
.site-footer {
    background: #050917;
    border-top: 1px solid rgba(216,189,130,0.12);
    padding: 65px 0 20px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 35px;
}

.footer-logo {
    height: 72px;
    margin-bottom: 18px;
}

.footer-col h4 {
    color: #f7edd8;
    margin-bottom: 16px;
}

.footer-col p,
.footer-col a {
    color: #bfc5d6;
}

.footer-col a:hover {
    color: #d8bd82;
}

.footer-col ul {
    list-style: none;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 35px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
    color: #7f879b;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media(max-width: 1050px) {
    .premium-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media(max-width: 768px) {
    .site-header {
        top: 10px;
        width: 94%;
    }

    .header-inner {
        flex-direction: column;
        gap: 12px;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }

    .header-phone {
        display: none;
    }

    .hero-premium {
        min-height: 105vh;
        background-position: center right;
    }

    .hero-overlay {
        background: rgba(8,13,29,0.82);
    }

    .hero-content {
        padding-top: 170px;
    }

    .hero-logo {
        width: 145px;
    }

    .hero-left h1 {
        font-size: 39px;
    }

    .hero-stats {
        flex-direction: column;
    }

    .premium-grid,
    .about-grid,
    .process-grid,
    .gallery-grid,
    .footer-inner {
        grid-template-columns: 1fr;
    }

    .services-premium,
    .about-premium,
    .process-premium,
    .gallery-premium,
    .cta-premium {
        padding: 70px 0;
    }
}

/* POLISH FINAL */

body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* Header shrink on scroll */
.site-header.scrolled {
    top: 8px;
    background: rgba(5, 9, 23, 0.82);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.site-header.scrolled .logo-area img {
    height: 58px;
}

/* Gold glow */
.hero-left h1 span,
.section-heading span,
.about-content span,
.cta-premium span {
    text-shadow: 0 0 24px rgba(216,189,130,0.25);
}

/* Hero luxury shine */
.hero-premium::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -180px;
    top: 80px;
    background: radial-gradient(circle, rgba(216,189,130,0.18), transparent 65%);
    filter: blur(8px);
    z-index: 1;
    pointer-events: none;
}

/* Smooth reveal */
.reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: 0.8s ease;
}

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

/* Better cards */
.premium-card,
.process-card {
    position: relative;
    overflow: hidden;
}

.premium-card::before,
.process-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(216,189,130,0.16), transparent 35%);
    opacity: 0;
    transition: 0.35s;
    pointer-events: none;
}

.premium-card:hover::before,
.process-card:hover::before {
    opacity: 1;
}

/* Image polish */
.premium-card img,
.gallery-grid img,
.about-image img {
    filter: saturate(0.92) contrast(1.05);
}

.premium-card:hover img,
.gallery-grid img:hover {
    filter: saturate(1.05) contrast(1.08);
}

/* Buttons shine */
.btn-primary {
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
    transform: skewX(-25deg);
    transition: 0.65s;
}

.btn-primary:hover::after {
    left: 120%;
}

/* Hero stats icons look */
.hero-stats div {
    transition: 0.35s ease;
}

.hero-stats div:hover {
    transform: translateY(-5px);
    background: rgba(216,189,130,0.10);
}

/* Mobile polish */
@media(max-width: 768px) {
    .site-header {
        border-radius: 18px;
    }

    .logo-area img {
        height: 48px;
    }

    .hero-left {
        text-align: left;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-primary,
    .btn-glass {
        width: 100%;
    }
}

.page-hero {
    padding: 190px 0 95px;
    background:
        linear-gradient(rgba(8,13,29,0.88), rgba(8,13,29,0.92)),
        url('/assets/img/hero-consultanta.jpg') center/cover no-repeat;
    text-align: center;
}

.page-hero span,
.contact-info span {
    color: #d8bd82;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    font-weight: 700;
}

.page-hero h1,
.contact-info h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #f7edd8;
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.1;
    margin: 14px auto;
    max-width: 900px;
}

.page-hero p,
.contact-info p {
    color: #bfc5d6;
    max-width: 760px;
    margin: auto;
}

.contact-section {
    padding: 95px 0;
    background: #080d1d;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 45px;
    align-items: start;
}

.contact-info {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(216,189,130,0.18);
    border-radius: 30px;
    padding: 38px;
}

.contact-info p {
    margin: 0 0 24px;
}

.contact-box {
    padding: 18px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.contact-box strong {
    display: block;
    color: #d8bd82;
    margin-bottom: 5px;
}

.contact-box a,
.contact-box p {
    color: #f7edd8;
}

.contact-form {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(216,189,130,0.18);
    border-radius: 30px;
    padding: 38px;
}

.contact-form label {
    display: block;
    color: #f7edd8;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(216,189,130,0.18);
    background: rgba(5,9,23,0.75);
    color: #ffffff;
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #d8bd82;
}

.contact-form button {
    border: none;
    cursor: pointer;
}

@media(max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding-top: 220px;
    }
}


.alert {
    text-align: center;
    margin: 30px auto;
    padding: 15px 20px;
    border-radius: 12px;
    max-width: 600px;
    font-weight: 600;
}

.alert.success {
    background: rgba(216,189,130,0.15);
    color: #d8bd82;
    border: 1px solid #d8bd82;
}

.alert.error {
    background: rgba(255,0,0,0.1);
    color: #ff4d4d;
    border: 1px solid #ff4d4d;
}

.faq-section {
    padding: 95px 0;
    background: #080d1d;
}

.faq-list {
    max-width: 950px;
    margin: 0 auto;
    display: grid;
    gap: 18px;
}

.faq-item {
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(216,189,130,0.18);
    border-radius: 24px;
    padding: 26px;
}

.faq-item h3 {
    color: #f7edd8;
    margin-bottom: 10px;
    font-size: 21px;
}

.faq-item p {
    color: #bfc5d6;
}


/* FINAL UPGRADE */

/* WhatsApp floating */
.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 9999;
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 800;
    box-shadow: 0 18px 45px rgba(0,0,0,0.35);
    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.03);
}

/* Premium hover depth */
.premium-card,
.process-card,
.contact-form,
.contact-info,
.faq-item {
    box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.premium-card:hover,
.process-card:hover,
.faq-item:hover {
    box-shadow: 0 35px 95px rgba(0,0,0,0.35);
}

/* Better image cards */
.premium-card img {
    transition: 0.45s ease;
}

.premium-card:hover img {
    transform: scale(1.06);
}

/* CTA stronger */
.cta-premium {
    position: relative;
    overflow: hidden;
}

.cta-premium::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: -120px;
    top: -120px;
    background: radial-gradient(circle, rgba(216,189,130,0.18), transparent 70%);
    pointer-events: none;
}

/* Form polish */
.contact-form input,
.contact-form select,
.contact-form textarea {
    transition: 0.25s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    box-shadow: 0 0 0 4px rgba(216,189,130,0.12);
}

/* Better mobile WhatsApp */
@media(max-width: 768px) {
    .whatsapp-float {
        right: 14px;
        bottom: 14px;
        padding: 12px 18px;
        font-size: 14px;
    }
}