/* ==================== */
/* GLAMUR LIGHT - MAIN CSS */
/* ==================== */

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4BC;
    --gold-dark: #A88B2A;
    --black: #0A0A0A;
    --black-light: #141414;
    --black-lighter: #1E1E1E;
    --white: #FAFAFA;
    --white-dim: rgba(250, 250, 250, 0.7);
    --white-dimmer: rgba(250, 250, 250, 0.5);
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: 0.02em;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold-light);
}

/* ==================== */
/* PRELOADER */
/* ==================== */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--black);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    opacity: 0;
    animation: preloaderFadeIn 1s ease forwards 0.2s;
}

.preloader-logo span {
    color: var(--white);
    font-weight: 400;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    position: relative;
}

.preloader-spinner::before,
.preloader-spinner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
}

.preloader-spinner::before {
    width: 100%;
    height: 100%;
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.preloader-spinner::after {
    width: 100%;
    height: 100%;
    border: 2px solid transparent;
    border-top-color: var(--gold);
    animation: preloaderSpin 1s linear infinite;
}

.preloader-text {
    margin-top: 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--white-dimmer);
    opacity: 0;
    animation: preloaderFadeIn 1s ease forwards 0.5s;
}

@keyframes preloaderFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ==================== */
/* WHATSAPP FLOAT */
/* ==================== */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

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

.whatsapp-float .tooltip {
    position: absolute;
    right: 70px;
    background: var(--black-light);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--whatsapp);
    animation: whatsappPulse 2s ease-in-out infinite;
    z-index: -1;
}

@keyframes whatsappPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 0; }
}

/* ==================== */
/* NAVIGATION */
/* ==================== */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.4s ease, padding 0.4s ease;
}

nav.scrolled {
    background-color: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.08em;
}

.logo span {
    font-weight: 400;
    color: var(--white);
}

.nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    margin: 0;
    padding: 0;
    z-index: 999;
}

.nav-links.active {
    opacity: 1;
    visibility: visible;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 0.5rem 1rem;
    display: block;
}

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    margin-right: -10px;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ==================== */
/* PAGE HEADER */
/* ==================== */
.page-header {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 5% 60px;
    text-align: center;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.page-header-content {
    position: relative;
    z-index: 10;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header h1 em {
    font-style: italic;
    color: var(--gold);
}

.page-header p {
    font-size: 1rem;
    color: var(--white-dim);
    max-width: 600px;
    margin: 0 auto;
}

/* ==================== */
/* HERO SECTION */
/* ==================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 80px 5% 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 40%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 60%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--gold);
    border-radius: 50%;
    animation: sparkle 3s ease-in-out infinite;
    opacity: 0;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 0 1rem;
    max-width: 100%;
}

.hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-description {
    font-size: 1rem;
    color: var(--white-dim);
    max-width: 100%;
    margin: 0 auto 2rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
    line-height: 1.7;
}

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

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

/* ==================== */
/* BUTTONS */
/* ==================== */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--black);
}

.cta-button:hover::before {
    transform: translateX(0);
}

.cta-button.whatsapp {
    background: var(--whatsapp);
    border-color: var(--whatsapp);
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cta-button.whatsapp::before {
    background: var(--whatsapp-dark);
}

.cta-button.whatsapp svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ==================== */
/* SECTIONS */
/* ==================== */
section {
    padding: 4rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-label {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.2;
}

.section-dark {
    background: var(--black-light);
}

.section-divider {
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ==================== */
/* CONTENT STYLES */
/* ==================== */
.content-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.content-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.content-text h2 em {
    font-style: italic;
    color: var(--gold);
}

.content-text p {
    color: var(--white-dim);
    font-weight: 300;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.content-text ul {
    list-style: none;
    margin: 1.5rem 0;
}

.content-text ul li {
    color: var(--white-dim);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
}

.content-text ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: var(--gold);
}

/* ==================== */
/* STATS */
/* ==================== */
.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 120px;
}

.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white-dimmer);
    margin-top: 0.4rem;
}

/* ==================== */
/* SERVICES/CARDS */
/* ==================== */
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: var(--black);
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 4px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
}

.service-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1.5rem;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    stroke: var(--gold);
    stroke-width: 1.2;
    fill: none;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--white);
}

.service-card p {
    color: var(--white-dim);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
}

/* ==================== */
/* GALLERY */
/* ==================== */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: var(--black-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 4/3;
    border-radius: 4px;
}

.gallery-placeholder {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--white-dimmer);
    text-align: center;
    padding: 1.5rem;
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(212, 175, 55, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 0.6rem 1.2rem;
}

/* ==================== */
/* REVIEWS/TESTIMONIALS */
/* ==================== */
.reviews-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.review-card {
    background: var(--black-lighter);
    padding: 2rem;
    border-radius: 4px;
    border-left: 3px solid var(--gold);
}

.review-card p {
    color: var(--white-dim);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.review-card .author {
    color: var(--gold);
    font-weight: 500;
    font-size: 0.9rem;
}

.review-stars {
    color: var(--gold);
    margin-bottom: 1rem;
}

/* ==================== */
/* FAQ */
/* ==================== */
.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 1.5rem 0;
}

.faq-question {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.8rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    color: var(--gold);
    font-size: 1.5rem;
}

.faq-answer {
    color: var(--white-dim);
    font-weight: 300;
    line-height: 1.7;
}

/* ==================== */
/* CONTACT */
/* ==================== */
.contact-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.contact-info h2 em {
    font-style: italic;
    color: var(--gold);
}

.contact-info > p {
    color: var(--white-dim);
    font-weight: 300;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item svg {
    width: 22px;
    height: 22px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
    flex-shrink: 0;
}

.contact-item span,
.contact-item a {
    color: var(--white-dim);
    font-weight: 300;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.social-links svg {
    width: 20px;
    height: 20px;
    stroke: var(--gold);
    stroke-width: 1.5;
    fill: none;
}

/* ==================== */
/* FORMS */
/* ==================== */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 0;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    transition: border-color 0.3s ease;
    border-radius: 0;
    -webkit-appearance: none;
}

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

.form-group label {
    position: absolute;
    left: 0;
    top: 1rem;
    font-size: 0.9rem;
    color: var(--white-dimmer);
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.6rem;
    font-size: 0.75rem;
    color: var(--gold);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

/* Fix za browser autofill bijelu pozadinu */
.form-group input:-webkit-autofill,
.form-group input:-webkit-autofill:hover,
.form-group input:-webkit-autofill:focus,
.form-group input:-webkit-autofill:active,
.form-group textarea:-webkit-autofill,
.form-group textarea:-webkit-autofill:hover,
.form-group textarea:-webkit-autofill:focus,
.form-group textarea:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #0A0A0A inset !important;
    -webkit-text-fill-color: #FAFAFA !important;
    box-shadow: 0 0 0 1000px #0A0A0A inset !important;
    background-color: #0A0A0A !important;
    caret-color: #FAFAFA !important;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3) !important;
}

/* Za section-dark pozadinu */
.section-dark .form-group input:-webkit-autofill,
.section-dark .form-group input:-webkit-autofill:hover,
.section-dark .form-group input:-webkit-autofill:focus,
.section-dark .form-group input:-webkit-autofill:active,
.section-dark .form-group textarea:-webkit-autofill,
.section-dark .form-group textarea:-webkit-autofill:hover,
.section-dark .form-group textarea:-webkit-autofill:focus,
.section-dark .form-group textarea:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #141414 inset !important;
    box-shadow: 0 0 0 1000px #141414 inset !important;
    background-color: #141414 !important;
}

/* Poruka ispod forme */
.form-message {
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1rem;
    text-align: center;
    font-size: 0.95rem;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(37, 211, 102, 0.15);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.form-message.error {
    display: block;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #ff6b6b;
}

.submit-button {
    padding: 1.1rem 2rem;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    -webkit-appearance: none;
    border-radius: 0;
}

.submit-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gold);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: -1;
}

.submit-button:hover {
    color: var(--black);
}

.submit-button:hover::before {
    transform: translateX(0);
}

/* ==================== */
/* FOOTER */
/* ==================== */
footer {
    background: var(--black-light);
    padding: 3rem 5% 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-main {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-brand .footer-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1rem;
    display: block;
}

.footer-brand .footer-logo span {
    color: var(--white);
    font-weight: 400;
}

.footer-brand p {
    color: var(--white-dimmer);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links h4 {
    color: var(--gold);
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
}

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

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: var(--white-dimmer);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--gold);
}

.footer-contact p {
    color: var(--white-dimmer);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-contact a {
    color: var(--white-dim);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--white-dimmer);
}

.footer-bottom a {
    color: var(--gold);
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Cursor Glow */
.cursor-glow {
    display: none;
}

/* ==================== */
/* TABLET (768px+) */
/* ==================== */
@media (min-width: 768px) {
    html { font-size: 17px; }
    nav { padding: 1.2rem 5%; }
    .logo { font-size: 1.6rem; }
    .preloader-logo { font-size: 3rem; }
    
    .nav-links {
        gap: 2rem;
    }
    
    .nav-links a {
        font-size: 1.4rem;
    }
    
    .hero { padding: 100px 5% 80px; }
    .hero-subtitle { font-size: 0.85rem; }
    .hero-title { font-size: 3.5rem; }
    .hero-description { font-size: 1.05rem; max-width: 500px; }
    .hero-buttons { flex-direction: row; justify-content: center; gap: 1.5rem; }
    
    .page-header h1 { font-size: 3rem; }
    
    section { padding: 6rem 5%; }
    .section-title { font-size: 2.5rem; }
    
    .content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .content-text h2 { font-size: 2.5rem; }
    
    .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .service-card { padding: 2.5rem 2rem; }
    
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item:first-child { grid-column: span 2; }
    
    .reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    
    .contact-content { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
    .contact-info h2 { font-size: 2.5rem; }
    
    .footer-main { flex-direction: row; justify-content: space-between; }
    .footer-brand { max-width: 300px; }
    
    .whatsapp-float { bottom: 30px; right: 30px; }
    
    .stat-number { font-size: 3rem; }
}

/* ==================== */
/* DESKTOP (1024px+) */
/* ==================== */
@media (min-width: 1024px) {
    html { font-size: 18px; }
    
    .cursor-glow {
        display: block;
        position: fixed;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
        pointer-events: none;
        transform: translate(-50%, -50%);
        z-index: 9998;
    }
    
    nav { padding: 1.5rem 5%; }
    nav.scrolled { padding: 1rem 5%; }
    .logo { font-size: 1.8rem; }
    .preloader-logo { font-size: 3.5rem; }
    
    .nav-links {
        position: static;
        flex-direction: row;
        background: transparent;
        opacity: 1;
        visibility: visible;
        gap: 2.5rem;
        padding: 0;
        width: auto;
        height: auto;
    }
    
    .nav-links a {
        font-size: 0.85rem;
        color: var(--white-dim);
        padding: 0;
        position: relative;
    }
    
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 1px;
        background: var(--gold);
        transition: width 0.3s ease;
    }
    
    .nav-links a:hover::after,
    .nav-links a.active::after { width: 100%; }
    
    .menu-toggle { display: none; }
    
    .hero-title { font-size: clamp(3.5rem, 7vw, 5.5rem); }
    .hero-description { font-size: 1.1rem; max-width: 550px; }
    
    .page-header h1 { font-size: 3.5rem; }
    
    section { padding: 8rem 5%; }
    .section-header { margin-bottom: 5rem; }
    .section-title { font-size: 3rem; }
    
    .content-grid { gap: 6rem; }
    .content-text h2 { font-size: 3rem; }
    
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .service-card {
        padding: 3rem 2rem;
        transition: transform 0.5s ease, box-shadow 0.5s ease;
    }
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 60px rgba(212, 175, 55, 0.15);
    }
    .service-icon { width: 60px; height: 60px; }
    
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(2, 280px);
    }
    .gallery-item { aspect-ratio: auto; }
    .gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
    
    .contact-content { gap: 6rem; }
    .contact-info h2 { font-size: 3rem; }
    
    footer { padding: 4rem 5% 2rem; }
    
    .whatsapp-float { width: 65px; height: 65px; }
    .whatsapp-float svg { width: 35px; height: 35px; }
    
    .stat-number { font-size: 3.5rem; }
}

/* ==================== */
/* LARGE DESKTOP (1400px+) */
/* ==================== */
@media (min-width: 1400px) {
    .hero-title { font-size: 5rem; }
    .page-header h1 { font-size: 4rem; }
    .section-title { font-size: 3.5rem; }
    .content-text h2, .contact-info h2 { font-size: 3.5rem; }
}
