:root {
    --primary: #FFCC00;
    --primary-hover: #E6B800;
    --bg-dark: #0A0A0A;
    --bg-card: #141414;
    --border: #262626;
    --text-white: #FFFFFF;
    --text-grey: #A3A3A3;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .font-heading {
    font-family: 'Outfit', sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
}

a, button {
    cursor: pointer;
}



ul {
    list-style: none;
}

section {
    padding: 80px 0;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    height: 80px;
}

header .container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

.logo img {
    width: 42px;
    height: 42px;
    object-fit: cover;
    border-radius: 2px;
    border: 1px solid var(--border);
}

.logo span {
    font-weight: 900;
    font-size: 20px;
    letter-spacing: -0.02em;
}

nav ul {
    display: flex;
    gap: 40px;
}

nav ul li a {
    color: var(--text-grey);
    font-weight: 500;
    font-size: 15px;
}

nav ul li a:hover {
    color: var(--text-white);
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 12px 20px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-phone:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* Hero Section */
#acasa {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

#acasa .hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

#acasa .hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#acasa .hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
}

.hero-content {
    max-width: 800px;
}

.hero-badge {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 13px;
    margin-bottom: 24px;
    display: block;
}

.hero-content h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -0.01em;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-grey);
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.8;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-grey);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translate(-50%, 0);}
    40% {transform: translate(-50%, -10px);}
    60% {transform: translate(-50%, -5px);}
}

.hero-btns {
    display: flex;
    gap: 16px;
}

.btn-primary {
    background: var(--primary);
    color: var(--bg-dark);
    padding: 18px 36px;
    border-radius: 4px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-secondary {
    background: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 18px 36px;
    border-radius: 4px;
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: scale(1.02);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
}

/* Section Common */
.section-tag {
    color: var(--primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 13px;
    margin-bottom: 12px;
    display: block;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 50px;
    letter-spacing: -0.01em;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.service-card {
    background: transparent;
    border: 1px solid var(--border);
    padding: 40px;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: var(--bg-card);
    border-color: var(--primary);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 204, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary);
    border-radius: 4px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-card p {
    color: var(--text-grey);
    font-size: 15px;
    line-height: 1.7;
}

/* About Section */
#despre {
    background: var(--bg-card);
}

.about-row {
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

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

.non-stop-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary);
    color: var(--bg-dark);
    padding: 16px 28px;
    font-weight: 800;
    font-size: 15px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    border: 1px solid var(--border);
    padding: 24px;
    text-align: center;
}

.stat-item .stat-icon {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 20px;
}

.stat-item span {
    display: block;
    font-family: 'Outfit';
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 4px;
}

.stat-item p {
    color: var(--text-grey);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.1em;
}

/* Legal Section */
.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 24px;
}

.legal-card {
    display: flex;
    gap: 24px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.legal-card .icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 204, 0, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 4px;
}

.legal-card h4 {
    font-size: 20px;
    margin-bottom: 10px;
}

.legal-card p {
    color: var(--text-grey);
    font-size: 14px;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: repeat(2, 300px);
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.gallery-item.large {
    grid-row: span 2;
}

/* Whatsapp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    animation: pulse 2s infinite;
}

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

/* Contact Form Styling */
.contact-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    text-align: center;
}

.contact-info {
    flex: 1;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.method-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.method-item .icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 204, 0, 0.05);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 1px solid var(--border);
}

.method-item .text span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--text-grey);
    margin-bottom: 2px;
}

.method-item .text p {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-white);
}

.contact-form-box {
    flex: 1;
    background: var(--bg-card);
    padding: 40px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

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

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-white);
}

.form-group input, 
.form-group textarea {
    width: 100%;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    padding: 14px;
    color: var(--text-white);
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

/* Footer & Other */
footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.made-by {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-grey);
}

/* Responsive */
@media (max-width: 1024px) {
    #acasa h1 { font-size: 48px; }
    .about-row, .contact-wrapper { flex-direction: column; gap: 40px; }
    .about-image img { height: 350px; }
    .gallery-grid { grid-template-columns: 1fr; grid-template-rows: repeat(3, 400px); }
    .gallery-item { height: 100%; width: 100%; }
    .gallery-item.large { grid-row: span 1; }
    .contact-info { text-align: center; }
    .contact-info a { margin: 0 auto; }
}

@media (max-width: 768px) {
    nav { display: none; }
    .nav-phone span { display: none; }
    .nav-phone {
        padding: 10px;
        width: 48px;
        height: 48px;
        justify-content: center;
        border-radius: 50%;
    }
    .hero-btns .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 20px;
        font-size: 18px;
    }
    .hero-btns { flex-direction: column; }
    .section-title { font-size: 32px; }
    .legal-grid { grid-template-columns: 1fr; }
}
