/* Global Reset & Base Styles */
:root {
    --color-gold: #D4AF37;
    --color-gold-light: #FEDC56;
    --color-gold-dark: #A67C00;
    --color-red: #E80000;
    --color-red-dark: #B30000;
    --color-black: #000000;
    --color-dark: #0a0a0a;
    --color-dark-grey: #1a1a1a;
    --color-text: #ffffff;
    --color-text-dim: #cccccc;

    --font-heading: 'Alef', sans-serif;
    --font-body: 'Assistant', sans-serif;
    --font-eng: 'Cinzel', serif;

    --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.3);
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.5);
    --radius: 12px;
}

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

body {
    background-color: var(--color-black);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.small-container {
    max-width: 800px;
}

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

.highlight-red {
    color: var(--color-red);
}

.gold-line {
    display: block;
    width: 60px;
    height: 3px;
    background: var(--color-gold);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    border: 2px solid transparent;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.4rem;
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
    color: #000;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.6);
}

.btn-outline-white {
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
}

.btn-outline-white:hover {
    background: #fff;
    color: #000;
}

.btn-block {
    width: 100%;
}

.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.5s ease;
}

.glow-effect:hover::after {
    opacity: 1;
    transform: scale(1);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: var(--font-eng);
    font-weight: 700;
    color: var(--color-gold);
    font-size: 1.5rem;
    display: block;
}

.logo-sub {
    font-size: 0.7rem;
    color: var(--color-text-dim);
    display: block;
    letter-spacing: 2px;
}

.nav-links {
    display: none;
    /* Mobile first hidden, desktop styles below */
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
        gap: 30px;
    }

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

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
    animation: zoomIn 20s infinite alternate;
}

@keyframes zoomIn {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.brand-name {
    background: linear-gradient(135deg, #ffffff 0%, #D4AF37 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shine 6s linear infinite;
    display: inline-block;
    text-shadow: 0px 0px 20px rgba(212, 175, 55, 0.4);
}

.hero-slogan {
    display: block;
    margin-top: 10px;
    font-size: 0.7em;
    background: linear-gradient(to right, #ff4d4d, #E80000, #ff4d4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0px 4px 15px rgba(232, 0, 0, 0.3);
    font-weight: 800;
    letter-spacing: 1px;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: #ffffff;
    /* Brigher color */
    margin-bottom: 30px;
    font-weight: 700;
    /* Bold */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Sections General */
.section {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--color-text);
}

.bg-darker {
    background: var(--color-dark-grey);
}

/* Services */
.grid-2-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media(min-width: 768px) {
    .grid-2-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(min-width: 1024px) {
    .grid-2-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    background-size: cover;
    background-position: center;
    border-radius: var(--radius);
    height: 350px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
}

.service-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 1), transparent);
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-bottom: 5px;
}

.service-sub {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 10px;
}

.service-list li {
    font-size: 0.85rem;
    margin-bottom: 4px;
    padding-right: 15px;
    position: relative;
}

.service-list li::before {
    content: '•';
    color: var(--color-gold);
    position: absolute;
    right: 0;
}

/* Features / Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-gold);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--color-gold);
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Bonus Banner */
.bonus-banner {
    background: linear-gradient(45deg, var(--color-gold-dark), var(--color-gold));
    color: #000;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.bonus-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgdmlld0JveD0iMCAwIDIwIDIwIiBmaWxsPSJub25lIiBzdHJva2U9IiMwMDAiIHN0cm9rZS1vcGFjaXR5PSIwLjEiIHN0cm9rZS13aWR0aD0iMSI+PHBhdGggZD0iTTAgMjBMMjAgME0wIDBMMjAgMjAiLz48L3N2Zz4=');
    opacity: 0.2;
}

.bonus-content {
    position: relative;
    z-index: 2;
}

.bonus-big-text {
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    font-family: var(--font-eng);
    line-height: 1;
    margin: 10px 0;
    text-shadow: 2px 2px 0px rgba(255, 255, 255, 0.4);
}

/* Contact Form */
.contact-section {
    background: #000;
}

.contact-box {
    background: var(--color-dark-grey);
    padding: 40px;
    border-radius: var(--radius);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-card);
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h2 {
    color: var(--color-gold);
}

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

.elegant-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #ccc;
}

.elegant-form input,
.elegant-form select {
    width: 100%;
    padding: 12px 15px;
    background: #000;
    border: 1px solid #333;
    border-radius: 8px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: 0.3s;
}

.elegant-form input:focus,
.elegant-form select:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.2);
}

.success-message {
    color: #4BB543;
    text-align: center;
    margin-top: 15px;
    font-weight: bold;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: #111;
    padding: 25px;
    border-radius: var(--radius);
    position: relative;
    border-top: 3px solid var(--color-red);
}

.client-info {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

.stars {
    color: var(--color-gold);
}

.quote {
    font-style: italic;
    color: #ddd;
    font-size: 0.95rem;
}

/* Gallery Strip */
.gallery-strip {
    display: flex;
    overflow-x: auto;
    background: #000;
}

.gallery-item {
    min-width: 250px;
    height: 180px;
    position: relative;
    flex: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.3s;
}

.gallery-item span {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    font-weight: bold;
    text-shadow: 0 2px 4px #000;
    z-index: 2;
    font-family: var(--font-eng);
}

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

/* FAQ */
.accordion-item {
    background: #111;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    text-align: right;
    /* RTL */
    background: none;
    border: none;
    padding: 20px;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    font-weight: 600;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #1a1a1a;
    padding: 0 20px;
}

.accordion-content p {
    padding: 20px 0;
    color: #ccc;
    font-size: 0.95rem;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    /* approx */
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

.icon {
    transition: transform 0.3s;
    font-size: 1.5rem;
    color: var(--color-gold);
}

/* Footer */
.main-footer {
    background: #050505;
    padding: 60px 0 20px;
    border-top: 1px solid #111;
}

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

.footer-col h3 {
    color: var(--color-gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

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

.footer-col ul li a:hover {
    color: var(--color-gold);
    text-decoration: underline;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.social-btn:hover {
    background: var(--color-gold);
    color: #000;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #111;
    padding-top: 20px;
    color: #555;
    font-size: 0.8rem;
}

.footer-legal {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 20px;
}