
:root {
    --bg-dark: #0a0a0a;
    --bg-surface: #171717;
    --primary-orange: #ff6600;
    --primary-orange-hover: #e65c00;
    --secondary-teal: #00e5ff;
    --text-main: #f3f4f6;
    --text-muted: #9ca3af;
    --font-main: 'Outfit', sans-serif;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

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

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

ul {
    list-style: none;
}

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

/* Glassmorphism Panel */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.glass-panel:hover {
    border-color: rgba(255, 102, 0, 0.3);
}

/* Typography Utilities */
.highlight { color: var(--primary-orange); }
.text-teal { color: var(--secondary-teal); }
.text-orange { color: var(--primary-orange); }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.mb-3 { margin-bottom: 1.5rem; }
.w-100 { width: 100%; display: block; text-align: center; }
.img-fluid { max-width: 100%; height: auto; }
.rounded { border-radius: 12px; }
.border-orange { border: 2px solid var(--primary-orange); }
.border-teal { border: 2px solid var(--secondary-teal); }
.shadow-lg { box-shadow: 0 10px 40px rgba(0,0,0,0.8); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}
.btn-primary {
    background: var(--primary-orange);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-orange-hover);
    transform: translateY(-2px);
}
.btn-secondary {
    background: transparent;
    color: var(--secondary-teal);
    border: 2px solid var(--secondary-teal);
}
.btn-secondary:hover {
    background: var(--secondary-teal);
    color: var(--bg-dark);
    transform: translateY(-2px);
}
.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}
.btn-outline:hover {
    background: var(--primary-orange);
    color: #fff;
}

/* Navigation */
.navbar {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}
.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img {
    height: 40px;
    filter: drop-shadow(0px 0px 8px rgba(255,102,0,0.5));
}
.nav-menu {
    display: flex;
    gap: 1.5rem;
}
.nav-menu a {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
}
.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-orange);
}
.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--primary-orange);
}

/* Page Headers */
.page-header {
    margin-top: 80px;
    padding: 4rem 20px 2rem;
    text-align: center;
}
.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.page-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Section Decorators */
main section:not(.hero):not(.page-header) {
    padding-bottom: 4rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    max-width: 1200px;
    margin: 0 auto;
}
.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
}
.hero-text {
    flex: 1;
}
.badge {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--secondary-teal);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 229, 255, 0.2);
}
.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}
.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 90%;
}
.hero-cta {
    display: flex;
    gap: 1rem;
}
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}
.image-wrapper {
    position: relative;
    padding: 1rem;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255,102,0,0.1), rgba(0,229,255,0.05));
}
.image-wrapper img {
    border-radius: 12px;
    max-width: 350px;
    width: 100%;
    display: block;
}
.owner-tag {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid var(--primary-orange);
    white-space: nowrap;
}

/* Quick Services */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}
.section-header h2 { font-size: 2rem; }
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}
.service-card {
    text-align: center;
}
.service-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 1rem;
}
.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Services & Pricing Page */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
.pricing-card {
    display: flex;
    flex-direction: column;
}
.card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}
.card-icon {
    color: var(--primary-orange);
    font-size: 1.5rem;
}
.card-header h2 {
    font-size: 1.2rem;
    font-weight: 600;
}
.price {
    margin-bottom: 1rem;
}
.price .currency { font-size: 1.5rem; color: var(--secondary-teal); }
.price .amount { font-size: 3rem; font-weight: 800; }
.price .period { color: var(--text-muted); font-size: 0.9rem; }
.pricing-card .desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
    flex-grow: 1;
    font-size: 0.95rem;
}

/* Portfolio Page */
.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 2rem;
}
.reel-card {
    padding: 10px;
    display: flex;
    justify-content: center;
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(0,0,0,0) 100%);
}
.reel-card iframe {
    width: 100%;
    aspect-ratio: 9 / 16;
    border-radius: 12px;
}

/* Pricing Comparison Table */
.compare-table {
    padding: 0;
    overflow: hidden;
}
.compare-row {
    display: flex;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--glass-border);
}
.compare-row:last-child {
    border-bottom: none;
}
.table-header {
    background: rgba(255, 102, 0, 0.1);
    font-weight: 600;
    font-size: 1.1rem;
}
.col-service { flex: 1.5; font-size: 1.1rem; }
.col-desc { flex: 2; color: var(--text-muted); padding: 0 1rem; }
.col-price { flex: 1; text-align: right; font-size: 1.2rem; font-weight: 600; }
.pricing-image-container { max-width: 800px; margin: 3rem auto 0; }

/* About Us */
.about-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}
.about-text h2 {
    color: var(--primary-orange);
    margin-bottom: 1.5rem;
}
.about-text h3 {
    color: var(--secondary-teal);
    margin: 1.5rem 0 0.5rem;
}
.about-text p {
    margin-bottom: 1rem;
    color: #d1d5db;
}
.about-image img {
    width: 100%;
    padding: 10px;
}

/* Why Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-card {
    text-align: left;
}
.feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.feature-card h3 {
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--text-muted);
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}
.contact-info h2, .contact-form h2 {
    margin-bottom: 1rem;
    color: var(--primary-orange);
}
.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 1.5rem;
}
.info-item i {
    font-size: 1.5rem;
    color: var(--secondary-teal);
    width: 30px;
}
.form-group {
    margin-bottom: 1.2rem;
}
.form-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    color: #fff;
    font-family: inherit;
    outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--primary-orange);
}

/* FAQ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.faq-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.faq-item p {
    color: var(--text-muted);
    padding-left: 30px;
}

/* Legal */
.legal-section {
    margin-bottom: 2rem;
}
.legal-section h2 {
    color: var(--primary-orange);
    margin-bottom: 1rem;
}
.legal-section p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.divider {
    height: 1px;
    background: var(--glass-border);
    margin: 2rem 0;
}

/* Footer */
.footer {
    background: #050505;
    border-top: 1px solid var(--glass-border);
    padding: 3rem 20px 1rem;
    margin-top: 4rem;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
}
.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links, .footer-legal {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links h3, .footer-legal h3 {
    color: var(--primary-orange);
    margin-bottom: 10px;
    font-size: 1.1rem;
}
.footer-links a, .footer-legal a {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links a:hover, .footer-legal a:hover {
    color: var(--secondary-teal);
}
.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: #666;
    font-size: 0.85rem;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.float-btn:hover {
    transform: scale(1.1);
}
.wa-btn {
    background-color: #25D366;
}
.call-btn {
    background-color: var(--primary-orange);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .hero-content { gap: 2rem; }
}

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(15,15,15,0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 2rem;
        text-align: center;
        border-bottom: 1px solid var(--glass-border);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }
    .nav-menu.active { transform: translateY(0); }
    
    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 2rem;
    }
    .hero p { max-width: 100%; }
    .hero-cta { justify-content: center; }
    .image-wrapper img { max-width: 280px; }
    
    .compare-row { flex-direction: column; gap: 10px; }
    .col-price { text-align: left; }
    .table-header { display: none; }
    
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-container { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .btn { width: 100%; margin-bottom: 10px; }
    .hero-cta { flex-direction: column; }
    .page-header h1 { font-size: 2rem; }
    .reels-grid { grid-template-columns: 1fr; }
}
