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

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #fafafa;
}

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

/* Header */
.main-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    flex-direction: column;
}

.logo {
    font-size: 2rem;
    color: #d4af37;
    font-weight: bold;
    letter-spacing: 3px;
}

.tagline {
    color: #d4af37;
    font-size: 0.8rem;
    letter-spacing: 5px;
    opacity: 0.8;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: #d4af37;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #d4af37;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    padding: 8rem 0;
    text-align: center;
    color: white;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 5px;
}

.hero-text {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.9;
    color: #e0e0e0;
}

.gold-button {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

.gold-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.6);
}

/* Excellence Section */
.excellence-section {
    padding: 5rem 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.excellence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.excellence-card {
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 4px solid #d4af37;
}

.excellence-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.excellence-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.excellence-card p {
    color: #666;
    line-height: 1.8;
}

/* Showcase Section */
.showcase-section {
    padding: 5rem 0;
    background: #1a1a1a;
}

.showcase-section .section-title {
    color: #d4af37;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.15);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(212, 175, 55, 0.95), transparent);
    color: #1a1a1a;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.portfolio-overlay p {
    font-size: 1rem;
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-block h3,
.footer-block h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-block p {
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-block a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-block a:hover {
    color: #d4af37;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
}

/* Page Styles */
.page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 300;
    letter-spacing: 3px;
}

.page-header p {
    font-size: 1.3rem;
    color: #ccc;
}

.page-content {
    padding: 4rem 0;
    background: white;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.content-text h2 {
    color: #1a1a1a;
    margin: 2rem 0 1rem;
    font-size: 2rem;
    font-weight: 600;
}

.content-text p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    color: #666;
    font-size: 1.1rem;
}

.content-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info,
.contact-form-wrapper {
    background: #fafafa;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.contact-info h2,
.contact-form-wrapper h2 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-size: 2rem;
    font-weight: 600;
}

.contact-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #ddd;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item h3 {
    color: #d4af37;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: #666;
    line-height: 1.8;
}

.contact-item a {
    color: #1a1a1a;
    text-decoration: none;
}

.contact-item a:hover {
    color: #d4af37;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.submit-btn {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1a1a1a;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .main-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

