:root {
    --primary-color: #0f172a;
    --secondary-color: #1e293b;
    --gold-color: #d4af37;
    --gold-hover: #b5952f;
    --text-dark: #334155;
    --text-light: #f8fafc;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.1);
    --glass-dark-bg: rgba(15, 23, 42, 0.7);
    --glass-dark-border: rgba(212, 175, 55, 0.2);
    
    --font-heading: 'Prompt', sans-serif;
    --font-body: 'Inter', 'Prompt', sans-serif;
    
    --transition: all 0.3s ease;
}

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

img {
    max-width: 100%;
    height: auto;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
}

h1, h2, h3, h4, h5, h6, p {
    word-break: break-word;
    overflow-wrap: break-word;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

/* Utilities */
.text-3xl { font-size: 2.5rem; }
.mb-4 { margin-bottom: 1rem; }
.shadow-lg { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }
.rounded-image { border-radius: 12px; width: 100%; height: auto; object-fit: cover; }

/* Buttons */
.btn-primary, .btn-primary-small {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-color), #f3e5ab);
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 30px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    padding: 15px 35px;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary-small {
    padding: 10px 25px;
    font-size: 1rem;
}

.btn-primary:hover, .btn-primary-small:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
    background: linear-gradient(135deg, var(--gold-hover), var(--gold-color));
}

.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    border-radius: 30px;
    background: transparent;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--text-light);
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Glassmorphism Classes */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.glass-nav.scrolled {
    background: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
}

.glass-card-dark {
    background: var(--glass-dark-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-dark-border);
    box-shadow: var(--glass-shadow);
    border-radius: 16px;
    color: var(--text-light);
}

/* Navigation */
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--gold-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 1rem;
    position: relative;
}

.nav-links a:not(.btn-primary-small)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--gold-color);
    transition: width 0.3s;
}

.nav-links a:not(.btn-primary-small):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    text-align: center;
    padding: 0 20px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.9));
}

.hero-content {
    max-width: 800px;
    width: 100%;
    margin-top: 50px;
    z-index: 1;
    padding: 0 10px;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold-color);
    border-radius: 30px;
    color: var(--gold-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(5px);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    width: 100%;
}

.hero-stats {
    display: flex;
    justify-content: space-around;
    padding: 25px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold-color);
    display: inline-block;
}

.stat-item span {
    font-size: 2.5rem;
    color: var(--gold-color);
    font-family: var(--font-heading);
    font-weight: 600;
}

.stat-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    opacity: 0.8;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748b;
}

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

.service-card {
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.icon-wrapper i {
    font-size: 2rem;
    color: var(--gold-color);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-light);
}

.service-card p {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image {
    position: relative;
}

.floating-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 2;
}

.floating-badge i {
    font-size: 2.5rem;
}

.floating-badge h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.floating-badge p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

.subtitle {
    display: block;
    color: var(--gold-color);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.split-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.split-content p {
    font-size: 1.1rem;
    color: #475569;
    margin-bottom: 30px;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.1rem;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 500;
}

/* FAQ Section */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 25px 30px;
    text-align: left;
    background: none;
    border: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    color: #475569;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-image: url('hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--text-light);
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.85);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-card {
    padding: 30px;
    color: var(--text-dark);
}

.contact-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Footer */
footer {
    background: var(--primary-color);
    color: #94a3b8;
    padding-top: 80px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-about p {
    margin-bottom: 25px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold-color);
    transform: translateY(-3px);
}

.footer-links h3, .footer-areas h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: var(--font-heading);
}

.footer-links ul li, .footer-areas ul li {
    margin-bottom: 15px;
}

.footer-links ul li a:hover {
    color: var(--gold-color);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Animations */
.animate-fade-up {
    animation: fadeUp 1s ease-out forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Responsive */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
    }
    .floating-badge {
        right: 20px;
    }
    .hero-content h1 {
        font-size: 3rem;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    .nav-container {
        padding: 10px 15px;
    }
    .logo {
        font-size: 1.2rem;
    }
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 15px 0;
        display: none;
        backdrop-filter: blur(15px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links a {
        padding: 12px 20px;
        width: 100%;
        text-align: center;
        display: block;
        font-size: 1.1rem;
    }
    .nav-links a.btn-primary-small {
        width: 80%;
        margin: 10px auto;
    }
    .mobile-menu-btn {
        display: block;
        font-size: 1.5rem;
    }
    .hero {
        padding: 0 15px;
        min-height: 100svh;
    }
    .hero-content {
        margin-top: 80px;
        padding: 0;
    }
    .badge {
        font-size: 0.8rem;
        padding: 6px 15px;
        margin-bottom: 15px;
    }
    .hero-content h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    .hero-cta {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
        margin-bottom: 40px;
    }
    .btn-primary, .btn-secondary {
        width: 100%;
        padding: 14px 20px;
        font-size: 1.1rem;
    }
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        border-radius: 20px;
    }
    .stat-item h3, .stat-item span {
        font-size: 2rem;
    }
    .section-padding {
        padding: 60px 0;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .services-grid, .contact-grid, .portfolio-grid, .blog-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .split-image img {
        height: 250px;
    }
    .floating-badge {
        bottom: -20px;
        right: 10px;
        padding: 15px;
        transform: scale(0.9);
        width: 85%;
        justify-content: center;
    }
    .portfolio-filters button {
        margin: 5px;
        display: inline-block;
        font-size: 0.9rem;
        padding: 8px 20px;
    }
    .footer-grid {
        gap: 30px;
    }
}
