/* Executive Polish Version - styles.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background: #0b0b0b;
    color: #ffffff;
    line-height: 1.7;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header */
header {
    background: #000000;
    padding: 22px 0;
    border-bottom: 2px solid #d4af37;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: left;
    margin-bottom: 18px;
}

.logo {
    width: 85px;
    height: auto;
}

header h1 {
    color: #d4af37;
    font-size: 2.2rem;
    letter-spacing: 1px;
}

.tagline {
    color: #ffffff;
    font-size: 1rem;
}

/* Navigation */
nav {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

nav a {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    padding: 8px 14px;
    border: 1px solid transparent;
    border-radius: 20px;
    transition: 0.3s ease;
}

nav a:hover {
    border-color: #d4af37;
    background: #d4af37;
    color: #000000;
}

/* Hero */
.hero {
    padding: 110px 0;
    text-align: center;
    background:
        linear-gradient(rgba(0,0,0,0.82), rgba(0,0,0,0.82)),
        radial-gradient(circle at top, #3a2d09, #0b0b0b 60%);
}

.hero h2 {
    color: #d4af37;
    font-size: 3.2rem;
    margin-bottom: 22px;
}

.hero p {
    max-width: 800px;
    margin: 0 auto 32px;
    font-size: 1.2rem;
    color: #eeeeee;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    background: #d4af37;
    color: #000000;
    padding: 14px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s ease;
}

.btn:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: #d4af37;
    border: 2px solid #d4af37;
}

.btn-outline:hover {
    background: #d4af37;
    color: #000000;
}

/* Sections */
.section {
    padding: 85px 0;
}

.dark {
    background: #151515;
}

.section h2 {
    text-align: center;
    color: #d4af37;
    font-size: 2.3rem;
    margin-bottom: 28px;
}

.section h3 {
    color: #d4af37;
    margin-bottom: 12px;
}

.section p {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #eeeeee;
}

/* Cards */
.cards {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    background: #222222;
    border: 1px solid #d4af37;
    border-radius: 16px;
    padding: 32px;
    width: 320px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.35);
    transition: 0.3s ease;
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 14px 35px rgba(212,175,55,0.18);
}

/* Services */
ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
    margin-top: 30px;
}

ul li {
    background: #1c1c1c;
    border: 1px solid #d4af37;
    padding: 18px;
    border-radius: 12px;
    text-align: center;
    font-weight: bold;
}

/* Founder */
.founder-title {
    color: #d4af37 !important;
    font-weight: bold;
    margin-bottom: 18px !important;
}

/* Testimonial */
.testimonial {
    font-size: 1.25rem;
    font-style: italic;
    border-left: 4px solid #d4af37;
    padding: 22px;
    background: #202020;
    border-radius: 10px;
}

/* Contact */
#contact p {
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: #000000;
    text-align: center;
    padding: 24px;
    border-top: 2px solid #d4af37;
    color: #cccccc;
}

/* Mobile */
@media (max-width: 768px) {
    .logo-section {
        flex-direction: column;
        text-align: center;
    }

    .hero h2 {
        font-size: 2.3rem;
    }

    .hero {
        padding: 80px 0;
    }
}