@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Syne:wght@400;600;700;800;900&display=swap');

:root {
    /* Ngjyrat e sakta nga Flyer-i */
    --gold: #d4af37;
    --gold-light: #f4d03f;
    --gold-dark: #aa8a2e;
    --gold-gradient: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #aa8a2e 100%);
    --gold-gradient-hover: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #aa8a2e 100%);
    
    /* Dark Mode (Default) - E zezë më e thellë si në flyer */
    --bg-body: #050505; 
    --bg-surface: #0f0f0f;
    --bg-surface-hover: #161616;
    --bg-card: #0f0f0f;
    --text-main: #ffffff;
    --text-muted: #a1a1a1;
    --text-light: #d1d1d1;
    --border-color: rgba(212, 175, 55, 0.2); /* Border me nuancë ari */
    --shadow: 0 20px 60px rgba(0,0,0,0.9);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.2);
    --glass-bg: rgba(5, 5, 5, 0.85);
    --glass-border: rgba(212, 175, 55, 0.2);
}

[x-cloak] { 
    display: none !important; 
}

body.light-mode {
    --bg-body: #f8f8f8; /* Më e pastër, neutral */
    --bg-surface: #ffffff;
    --bg-surface-hover: #f0f0f0;
    --bg-card: #ffffff;
    --text-main: #050505; /* E zeza e flyer-it për lexim më të mirë */
    --text-muted: #555555;
    --text-light: #777777;
    --border-color: rgba(0, 0, 0, 0.08);
    --shadow: 0 20px 60px rgba(0,0,0,0.05);
    --shadow-gold: 0 10px 40px rgba(212, 175, 55, 0.15);
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(212, 175, 55, 0.1); /* Nuancë ari edhe në light mode */
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    outline: none; 
}

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
}

body {
    background-color: var(--bg-body);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Syne', sans-serif; 
    font-weight: 700; 
}

.container { 
    width: 90%; 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 20px;
}

.text-gold { 
    color: var(--gold); 
}

.gradient-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* --- BUTTONS --- */
.btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    font-weight: 700;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    background: var(--gold-gradient-hover);
}

.btn-primary.btn-glow {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.btn-primary.btn-glow:hover {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.7);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

/* --- HEADER --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.glass-header {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-weight: 900;
    font-size: 1.8rem;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo span {
    color: var(--gold);
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-img-footer {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* --- THEME SWITCHER --- */
.theme-btn {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.theme-btn:hover {
    background: var(--bg-surface-hover);
    border-color: var(--gold);
    transform: rotate(180deg);
}

.theme-btn-desktop {
    display: flex;
}

.theme-btn-mobile {
    display: none;
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-main);
    transition: transform 0.3s ease;
}

.mobile-toggle:hover {
    transform: scale(1.1);
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: block;
    }
    .theme-btn-desktop {
        display: none;
    }
    .theme-btn-mobile {
        display: flex;
    }
}

/* --- HERO SECTION --- */
.hero-section {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--bg-body) 0%, var(--bg-surface) 50%, var(--bg-body) 100%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    z-index: -1;
}

.diagonal-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.badge-floating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--gold);
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.hero-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 900;
    letter-spacing: -2px;
}

.hero-description {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 500px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-mini {
    text-align: left;
}

.stat-mini h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 5px;
    font-weight: 800;
}

.stat-mini p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow);
}

.image-frame:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.05);
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.floating-card {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--bg-surface);
    padding: 20px 25px;
    border-radius: 20px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
    animation: float 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.floating-card i {
    font-size: 2rem;
}

.floating-card h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--text-main);
}

.floating-card span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* --- SERVICES SECTION --- */
.services-section {
    padding: 120px 0;
    position: relative;
    background: var(--bg-surface);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    font-weight: 600;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.service-card {
    background: var(--bg-card);
    border-radius: 25px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--bg-surface);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    border: 1px solid var(--border-color);
}

.service-icon i {
    font-size: 1.8rem;
    color: var(--gold);
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
    position: relative;
    z-index: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-main);
}

.service-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.service-features i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* --- ABOUT SECTION --- */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.diagonal-bg-reverse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-body);
    clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
    z-index: -1;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.image-stack {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-img-main {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.image-badge {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: var(--bg-surface);
    padding: 25px 30px;
    border-radius: 20px;
    border: 1px solid var(--gold);
    text-align: center;
    box-shadow: var(--shadow);
}

.image-badge h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.image-badge p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.about-content {
    position: relative;
}

.about-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.feature-item {
    padding: 25px;
    background: var(--bg-surface);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.stats-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: left;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-item p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* --- GALLERY SECTION --- */
.gallery-section {
    padding: 120px 0;
    background: var(--bg-surface);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    width: 100%;
    display: flex;
    overflow: hidden;
    border: 2px solid var(--gold); /* Korniza jote */
    border-radius: 12px;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--gold);
}


.gallery-item img {
    width: 100%;
    aspect-ratio: 3 / 2; 
    object-fit: cover; 
    object-position: center;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* --- CTA SECTION --- */
.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0.1;
    clip-path: polygon(0 20%, 100% 0, 100% 80%, 0 100%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- FOOTER --- */
.footer {
    background: var(--bg-surface);
    padding: 80px 0 30px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 20px;
    color: var(--text-main);
}

.footer-section p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--gold);
}

.footer-section ul li i {
    color: var(--gold);
    width: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--gold);
    color: #000;
    transform: translateY(-5px);
    border-color: var(--gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* --- MODAL --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay[style*="display: block"] {
    display: flex !important;
}

.modal-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 550px;
    position: relative;
    box-shadow: var(--shadow);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--gold);
}

.modal-card h2 {
    margin-bottom: 10px;
}

/* --- INPUT FIELDS --- */
.input-field {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 20px;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.input-field:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.input-field::placeholder {
    color: var(--text-muted);
}

select.input-field {
    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='%23d4af37' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
    cursor: pointer;
}

select.input-field:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* --- MOBILE MENU --- */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: var(--bg-surface);
    z-index: 1500;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    backdrop-filter: blur(20px);
    text-align: center;
}

/* --- CONTACT PAGE SPECIFIC --- */
.contact-hero {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.contact-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
}

.contact-info-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    height: fit-content;
    position: sticky;
    top: 120px;
}

.contact-form-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border: 1px solid var(--gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.3rem;
    color: var(--gold);
}

.contact-item h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.map-container {
    margin-top: 80px;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

/* --- PRIVACY PAGE SPECIFIC --- */
.privacy-hero {
    position: relative;
    padding: 0;
    overflow: hidden;
}

.privacy-section {
    padding: 80px 0;
    background: var(--bg-body);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.privacy-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.privacy-text h4 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--text-main);
    font-size: 1.2rem;
}

.privacy-text p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 15px;
}

.info-box-privacy {
    background: var(--bg-card);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    margin-top: 20px;
}

.info-box-privacy p {
    margin-bottom: 10px;
    color: var(--text-light);
}

.info-box-privacy p:last-child {
    margin-bottom: 0;
}

.privacy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 15px;
}

.privacy-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-muted);
    line-height: 1.7;
}

.privacy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* --- RESPONSIVE MODIFICATIONS (FIXES PER MOBILE) --- */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 900px) {
    .hero,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px; 
        width: 100%;
        padding: 0 10px;
    }
    
    .hero-section {
        padding: 130px 0 80px;
        min-height: auto;
    }
    
    /* --- FIXES PER CENTRIMIN E TEKSTIT TEK HERO DHE ABOUT --- */
    .hero,
    .hero-content,
    .about-content,
    .about-text,
    .section-header {
        text-align: center !important;
    }
    
    .hero-description,
    .about-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats,
    .stats-grid {
        justify-content: center;
    }
    
    /* Centrimi i kutive te vogla te About (Features) */
    .features-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .feature-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .stat-mini, .stat-item {
        text-align: center;
    }
    
    .floating-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: 30px auto 0;
        width: 100%;
        justify-content: center;
        background: var(--bg-card);
    }
    
    /* --- FIX KRYESOR PER FOTOT, KENDET DHE BADGE --- */
    .about-image-wrapper {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 50px; /* Hapesire per badge */
    }

    .image-frame, .image-stack {
        transform: none !important;
        width: 100% !important;
        max-width: 100%;
        overflow: visible !important; 
        box-shadow: none !important; 
        background: transparent !important;
        border-radius: 0 !important; 
        margin: 0 !important;
    }

    .hero-img, .about-img-main {
        width: 100%;
        height: auto;
        border-radius: 30px; /* Rrumbullakosja direkt te fotoja */
        box-shadow: var(--shadow); 
        display: block;
    }

    /* Rregullimi i "10+ Jahre Erfahrung" - TANI NE MES */
    .image-badge {
        position: absolute !important; 
        bottom: -30px !important; 
        left: 50% !important;
        transform: translateX(-50%) !important; /* Kjo e qon fiks ne mes */
        width: auto !important;
        min-width: 250px; 
        margin: 0 !important;
        z-index: 10;
        border-radius: 15px;
        background: var(--bg-surface); 
        box-shadow: var(--shadow-gold);
        padding: 15px 25px !important;
        right: auto !important; /* Siguri qe mos te terhiqet djathtas */
    }
    
    .services-grid, .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-section ul li {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        position: static;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero-section {
        padding: 110px 0 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .image-badge h3 {
        font-size: 2rem;
    }
}

/* =======================================================
   FIX FINAL PËR MOBILE OVERFLOW (Zgjidhja e plotë)
   Shtoje këtë në fund të style.css
   ======================================================= */

/* 1. Mbyllje Hermetike e Overflow-it */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important; /* Kjo është çelësi */
    position: relative;
}

/* 2. Rregullimi i Sfondeve Dekorative (Diagonalet shpesh shkaktojnë problemin) */
.diagonal-bg, 
.diagonal-bg-reverse, 
.cta-bg,
.hero-section::before,
.hero-section::after {
    width: 100% !important;
    max-width: 100vw !important;
    right: 0 !important;
    left: 0 !important;
    transform: none !important; /* Heq efektet që mund ta zgjerojnë */
    overflow: hidden !important;
}

/* 3. Resetimi i të gjithë elementëve "lundrues" për Mobile */
@media (max-width: 992px) {
    
    /* Lista e të gjithë elementëve që ke me position: absolute/fixed */
    .contact-info-card, 
    .floating-card, 
    .badge-floating, 
    .image-badge, 
    .hero-image-wrapper,
    .image-frame {
        position: relative !important; /* I kthen në rrjedhë normale */
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        left: auto !important;
        transform: none !important; /* Heq zhvendosjet anash */
        
        
        max-width: 100% !important;
        margin: 20px 0 !important; /* I jep pak frymë */
        box-shadow: none !important; /* Heq hijet nëse ato dalin jashtë */
    }

    /* Rregullimi specifik për kartën e kontaktit */
    .contact-info-card {
        margin-right: 0 !important;
        padding: 20px !important;
        border-radius: 10px;
    }

    /* Siguro që container-i nuk ka padding që e zgjeron */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        overflow: hidden; /* Siguri ekstra brenda containerit */
    }

    /* Imazhet të mos jenë kurrë më të gjera se ekrani */
    img {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Heqja e marginave negative nëse ka */
    .row, .form-row {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* =======================================================
   MASTER FIX: HEADER, TABLET & MOBILE LAYOUT
   Shtoje në fund të style.css dhe fshij fix-et e vjetra
   ======================================================= */

/* --- 1. RREGULLIMI I HEADER-it (Logo & Butonat) --- */
@media (max-width: 768px) {
    .nav-container {
        padding: 10px 15px !important; /* Më pak padding anash */
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important; /* Ndalon thyerjen e rreshtit */
    }

    /* Zvogëlojmë Logon që të ketë vend për butonat */
    .logo-img {
        height: 35px !important; 
        width: auto !important;
    }

    /* Rregullimi i butonave djathtas (Theme + Menu) */
    .nav-container > div { 
        gap: 10px !important; /* Zvogëlon hapësirën mes butonave */
    }

    .theme-btn {
        width: 35px !important;
        height: 35px !important;
        font-size: 1rem !important;
    }

    .mobile-menu-btn {
        font-size: 1.2rem !important;
        margin-left: 5px !important;
    }
}

/* --- 2. RREGULLIMI I SEKSIONIT "ABOUT" & TEKSTIT (Tablet & Mobile) --- */
/* Zgjerimi i rregullit për të përfshirë Tabletët (deri në 1024px) */
@media (max-width: 1024px) {
    
    /* Kthejmë Grid-in në kolonë që në Tablet */
    .about-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    /* Imazhi në qendër */
    .about-image-wrapper {
        width: 80% !important; /* Jo 100% që të duket mirë */
        margin: 0 auto 30px auto !important;
        max-width: 500px !important;
    }

    /* Teksti poshtë imazhit, me gjerësi të plotë */
    .about-content {
        width: 100% !important;
        padding: 0 10px !important;
        box-sizing: border-box !important;
    }
    
    /* Sigurohemi që titujt dhe paragrafët nuk dalin jashtë */
    .about-content h2, 
    .about-content p {
        word-wrap: break-word !important; /* Thyren fjalët e gjata */
        max-width: 100% !important;
    }

    /* Lista e ikonave (Zertifiziert, etj.) bëhet Grid 2x2 në Tablet, 1x1 në Mobile */
    .about-features {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important; /* 2 kolona për Tablet */
        gap: 20px !important;
    }
}

@media (max-width: 600px) {
    /* Vetëm për telefona, lista bëhet 1 kolonë */
    .about-features {
        grid-template-columns: 1fr !important;
    }
}

/* --- 3. RREGULLIMI I BADGE "10+ JAHRE" (Tablet Fix) --- */
@media (max-width: 1024px) {
    .experience-badge {
        /* E vendosim BRENDA imazhit, jo jashtë tij */
        right: 0px !important; /* Ishte -30px, tani 0px */
        bottom: -20px !important; 
        
        /* Përmasat për Tablet/Mobile */
        width: 120px !important;
        height: 120px !important;
        padding: 15px !important;
        
        /* Sigurojmë qendërzimin e tekstit */
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        
        transform: translate(10%, 0) !important; /* E shtyjmë pak djathtas por me kujdes */
    }

    /* Nëse ekrani është shumë i vogël, e fusim krejt brenda */
    @media (max-width: 450px) {
        .experience-badge {
            right: 50% !important; /* E qendrojmë në mes */
            transform: translateX(50%) !important;
            bottom: -30px !important;
        }
    }

    .experience-badge .years {
        font-size: 2rem !important;
        line-height: 1;
    }
    
    .experience-badge span {
        font-size: 0.8rem !important;
    }
}

/* --- 4. SIGURI GLOBALE PËR TEKSTIN --- */
p, h1, h2, h3, h4, h5, h6, span, li {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* =======================================================
   FIX: BADGE WIDTH & TEXT BREAKING
   ======================================================= */

@media (max-width: 768px) {
    .top-badge {
        width: -webkit-fit-content !important;
        width: -moz-fit-content !important;
        width: fit-content !important; 
        margin-left: 0 !important;
        margin-right: auto !important;
        display: flex !important;
        align-items: center;
        white-space: nowrap;
    }

    .about-content h2 {
        font-size: 1.8rem !important;
        line-height: 1.3;
        hyphens: none !important;
        word-break: keep-all !important;
        overflow-wrap: normal !important;
        text-align: center;
    }
}

@media (max-width: 380px) {
    .about-content h2 {
        font-size: 1.5rem !important;
    }
}

@media (max-width: 768px) {
    .top-badge {
        display: inline-flex !important; 
        width: auto !important;
        min-width: 0 !important;
        max-width: max-content !important;
        padding: 8px 16px !important;
        white-space: nowrap !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        flex: 0 0 auto !important;
    }

    .top-badge i {
        margin-right: 8px !important;
        font-size: 0.9rem !important;
    }
    
    .top-badge span {
        font-size: 0.85rem !important;
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .top-badge {
        display: inline-flex !important; 
        width: max-content !important; 
        max-width: 100% !important;
        align-self: flex-start !important;
        margin-right: auto !important;
        margin-left: 0 !important;
        box-sizing: border-box !important;
        white-space: nowrap !important;
    }

    .about-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
}

@media (max-width: 992px) {
    .about-content {
        display: block !important;
        text-align: left !important;
    }

    .top-badge {
        display: table !important; 
        width: auto !important;
        max-width: max-content !important;
        flex: none !important;
        padding: 8px 15px !important;
        margin-bottom: 20px !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    .top-badge i, 
    .top-badge span {
        display: inline-block !important;
        vertical-align: middle;
    }

    .top-badge i {
        margin-right: 8px !important;
    }
}

@media (max-width: 992px) {
    .about-content {
        display: block !important;
        text-align: left !important;
    }

    .top-badge {
        display: inline-flex !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: max-content !important;
        padding: 8px 15px !important;
        margin-bottom: 20px !important;
        margin-left: 0 !important;
        margin-right: auto !important;
        flex: none !important;
        align-self: flex-start !important;
    }

    .top-badge span, .top-badge i {
        display: inline-block !important;
        white-space: nowrap !important;
    }
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay[x-show="modalOpen"] {
    opacity: 1;
    visibility: visible;
}

/* style for modal card */
.modal-card {
    background: var(--bg-surface);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--border-color);
    width: 100%;
    max-width: 550px;
    position: relative;
    box-shadow: var(--shadow);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    max-height: 85vh;
    overflow-y: auto;
}

.modal-overlay[x-show="modalOpen"] .modal-card {
    transform: translateY(0);
}

/* closing modal */
.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
    transition: color 0.3s ease;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: var(--gold);
    background: var(--bg-surface-hover);
}

.modal-overlay[style*="display: flex"] {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* =======================================================
   BOOKING FORM STYLES
   ======================================================= */

/* Labels for form fields */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-main);
    font-size: 0.95rem;
}

/* Modal improvements */
.modal-card {
    max-width: 500px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
}

.booking-form {
    margin-top: 20px;
}

/* Success/Error Messages */
.form-message {
    padding: 15px;
    border-radius: 12px;
    margin-bottom: 20px;
    text-align: center;
    font-weight: 500;
}

.form-message.success {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

.form-message.error {
    background: rgba(244, 67, 54, 0.1);
    border: 1px solid rgba(244, 67, 54, 0.3);
    color: #f44336;
}

.form-message.info {
    background: rgba(33, 150, 243, 0.1);
    border: 1px solid rgba(33, 150, 243, 0.3);
    color: #2196F3;
}

/* Privacy notice */
.privacy-notice {
    background: var(--bg-card);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin: 25px 0;
}

/* Loading state */
.btn-loading {
    position: relative;
    color: transparent !important;
}

.btn-loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -10px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive form */
@media (max-width: 600px) {
    .modal-card {
        padding: 25px 20px;
        width: 98%;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
}

/* GDPR Popup - Mobile First */
.gdpr-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(20, 20, 20, 0.98); /* Ngjyrë e errët si kodi juaj */
    border-top: 1px solid var(--gold, #d4af37);
    z-index: 10000;
    padding: 15px 20px;
    animation: slideUp 0.5s ease;
}

.gdpr-container {
    display: flex;
    flex-direction: column; /* Në mobile butonat poshtë tekstit */
    align-items: center;
    justify-content: center;
    gap: 12px;
    max-width: 1200px; /* Përshtatet me gjerësinë e faqes suaj */
    margin: 0 auto;
    text-align: center;
}

.gdpr-text p {
    margin: 0;
    font-size: 13px;
    color: #ffffff;
    line-height: 1.4;
}

.gdpr-text a {
    color: var(--gold, #d4af37);
    text-decoration: underline;
}

.gdpr-btn {
    background: var(--gold, #d4af37);
    color: #000;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gdpr-btn:hover {
    background: #b8972f;
}

/* for DESKTOP */
@media (min-width: 768px) {
    .gdpr-popup {
        padding: 20px 0;
    }
    
    .gdpr-container {
        flex-direction: row; 
        justify-content: space-between;
        text-align: left;
        padding: 0 40px;
    }

    .gdpr-text p {
        font-size: 15px;
    }

    .gdpr-btn {
        padding: 10px 30px;
        font-size: 14px;
    }
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}