/* FORCE REFRESH: 1759141656 - WordPress CSS Override */
/* WordPress Theme - Bootstrap Override Fix - 1759141198 - Direct Method */
/*
Theme Name: NetClick Theme
Description: Professional WordPress theme for NetClick Digital Creative Agency with Fortune 500 specification design system. Features business intelligence dashboard, multi-product metrics, and landing page management.
Author: NetClick Co., LTD
Version: 56
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: netclick-theme
Domain Path: /languages
Tags: business, portfolio, creative-agency, dashboard, multi-product, professional
*/

:root {
    --primary-orange: #FF8C00;
    --primary-dark: #0B0F17;
    --secondary-dark: #161B24;
    --card-dark: #1A1F2B;
    --accent-orange: #FFB347;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B8C4;
    --text-muted: #6C7789;
    --border-subtle: #2A3441;
    --border-accent: #FF8C00;
    --gradient-primary: linear-gradient(135deg, #FF8C00 0%, #FF6B00 100%);
    --gradient-background: linear-gradient(135deg, #0B0F17 0%, #161B24 50%, #1A1F2B 100%);
    --shadow-primary: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(255, 140, 0, 0.15);
    --blur-backdrop: blur(20px);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    font-weight: 400;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

/* Navigation */
.navbar-premium {
    background: rgba(11, 15, 23, 0.95);
    backdrop-filter: var(--blur-backdrop);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.navbar-brand-premium {
    transition: all 0.3s ease;
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
}

.nav-link-premium {
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0 1rem;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    text-decoration: none;
}

.nav-link-premium:hover {
    color: var(--primary-orange);
    background: rgba(255, 140, 0, 0.1);
    transform: translateY(-2px);
}

a.btn-cta-premium, a.btn-cta-premium:link, a.btn-cta-premium:visited {
    background: var(--gradient-primary) !important;
    border: 2px solid transparent !important;
    color: white !important;
    padding: 16px 28px !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.2 !important;
    height: 56px !important;
    box-sizing: border-box !important;
}

a.btn-cta-premium:hover, a.btn-cta-premium:focus {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.4);
    color: white !important;
}

/* Hero Section */
.hero-section {
    padding: 200px 0 130px;
    background: var(--gradient-background);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF8C00' fill-opacity='0.08'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    animation: backgroundPattern 30s linear infinite;
}

@keyframes backgroundPattern {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, #ff6c00 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    font-weight: 400;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

a.btn-hero-secondary, a.btn-hero-secondary:link, a.btn-hero-secondary:visited {
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(255, 140, 0, 0.1);
    padding: 16px 28px !important;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

a.btn-hero-secondary:hover, a.btn-hero-secondary:focus {
    background: var(--primary-orange);
    color: white !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 140, 0, 0.3);
}

/* Section Styles */
.section-premium {
    padding: 120px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    letter-spacing: -0.01em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 6rem;
    text-align: center;
    line-height: 1.6;
}

/* Container and Grid System */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -1rem;
}

.col-lg-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.col-lg-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.col-lg-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    padding: 0 1rem;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 1rem;
    margin-bottom: 2rem;
}

.g-4 > * {
    padding: 1rem;
}

.g-5 > * {
    padding: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem !important;
}

.mt-4 {
    margin-top: 2rem !important;
}

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

.d-flex {
    display: flex !important;
}

.gap-3 {
    gap: 1rem !important;
}

.justify-content-center {
    justify-content: center !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

/* Service Cards */
.service-card {
    background: var(--card-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary) !important;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-accent);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary) !important;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white !important;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    padding: 0;
    text-align: left;
}

.service-features li {
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    padding-left: 2rem;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '\2713';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--secondary-dark) 0%, var(--card-dark) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23FF8C00' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 140, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 140, 0, 0.3);
    box-shadow: 0 10px 40px rgba(255, 140, 0, 0.15);
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
    line-height: 1;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
}

/* Portfolio Items */
.portfolio-item {
    background: var(--card-dark);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    height: 100%;
}

.portfolio-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--border-accent);
}

.portfolio-item:hover .portfolio-image {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #FF6B00 100%);
    color: white !important;
}

.portfolio-image {
    height: 200px;
    background: linear-gradient(135deg, var(--card-dark) 0%, var(--secondary-dark) 100%);
    border-bottom: 3px solid var(--primary-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-orange);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.portfolio-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.portfolio-item:hover .portfolio-image::before {
    left: 100%;
}

.portfolio-content {
    padding: 2rem;
}

.portfolio-category {
    color: var(--primary-orange);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.portfolio-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.portfolio-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Process Steps */
.process-step {
    text-align: center;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    font-weight: 800;
    color: white !important;
    transition: all 0.3s ease;
}

.process-step:hover .process-number {
    transform: scale(1.1);
}

.process-step h4 {
    color: var(--text-primary);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: var(--secondary-dark);
    padding: 120px 0;
    text-align: center;
    position: relative;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, var(--primary-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer-premium {
    background: var(--primary-dark);
    border-top: 1px solid var(--border-subtle);
    padding: 80px 0 40px;
}

.footer-brand {
    margin-bottom: 1.5rem;
}

.footer-description {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 300px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-section-title {
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.social-link {
    color: var(--text-secondary);
    font-size: 1.3rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.copyright {
    border-top: 1px solid var(--border-subtle);
    margin-top: 3rem;
    padding-top: 2rem;
    color: var(--text-muted);
    text-align: center;
}

/* Animations */
.animate-on-load {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }

    .hero-section {
        padding: 150px 0 100px;
        min-height: 70vh;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .navbar-premium {
        padding: 0.8rem 0;
    }
    
    .col-lg-4,
    .col-lg-3,
    .col-lg-2,
    .col-md-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .row {
        margin: 0;
    }
    
    .col-lg-4,
    .col-lg-3,
    .col-lg-2,
    .col-md-6 {
        padding: 0;
        margin-bottom: 2rem;
    }
}

/* CRITICAL OVERRIDES FOR WORDPRESS COMPATIBILITY */
body .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

body .row {
    display: flex !important;
    flex-wrap: wrap !important;
    margin: 0 -1rem !important;
}

body .col-lg-4 {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
    padding: 0 1rem !important;
    margin-bottom: 2rem !important;
}

body .col-lg-3 {
    flex: 0 0 25% !important;
    max-width: 25% !important;
    padding: 0 1rem !important;
    margin-bottom: 2rem !important;
}

body .col-md-6 {
    flex: 0 0 50% !important;
    max-width: 50% !important;
    padding: 0 1rem !important;
    margin-bottom: 2rem !important;
}

body .service-card {
    background: var(--card-dark) !important;
    border: 1px solid var(--border-subtle) !important;
    border-radius: 20px !important;
    padding: 3rem 2.5rem !important;
    text-align: center !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    height: 100% !important;
    display: block !important;
    width: 100% !important;
}

body .service-icon {
    width: 80px !important;
    height: 80px !important;
    background: var(--gradient-primary) !important;
    border-radius: 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 auto 2rem !important;
    font-size: 2rem !important;
    color: white !important;
}

body .section-premium {
    padding: 120px 0 !important;
    position: relative !important;
}

body .hero-section {
    padding: 200px 0 130px !important;
    background: var(--gradient-background) !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 80vh !important;
}

/* Responsive overrides */
@media (max-width: 768px) {
    body .col-lg-4,
    body .col-lg-3,
    body .col-md-6 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* FORCE 3-COLUMN GRID FOR SERVICE CARDS */
.section-premium .row {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2rem !important;
    margin: 0 !important;
}

.section-premium .col-lg-4 {
    flex: unset !important;
    max-width: unset !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    grid-column: span 1 !important;
}

/* Force service cards grid to be exactly 3 columns */
#services .row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 2rem !important;
    align-items: stretch !important;
}

#services .col-lg-4,
#services .col-md-6 {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Mobile responsive - 1 column on small screens */
@media (max-width: 768px) {
    .section-premium .row,
    #services .row {
        grid-template-columns: 1fr !important;
    }
}

/* Tablet responsive - 2 columns on medium screens */
@media (min-width: 769px) and (max-width: 1024px) {
    .section-premium .row,
    #services .row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* FORCE 3-COLUMN GRID FOR PORTFOLIO SECTION */
#portfolio .row {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 2rem !important;
    align-items: stretch !important;
    margin: 0 !important;
}

#portfolio .col-lg-4,
#portfolio .col-md-6 {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    grid-column: span 1 !important;
}

/* Apply grid to all sections with portfolio items */
.portfolio-item {
    width: 100% !important;
    height: 100% !important;
}

/* Stats section should also be 4 columns */
.stats-section .row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin: 0 !important;
}

.stats-section .col-lg-3 {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Process section should be 4 columns */
#process .row {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 2rem !important;
    margin: 0 !important;
}

#process .col-lg-3 {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Mobile responsive for all sections */
@media (max-width: 768px) {
    #portfolio .row,
    .stats-section .row,
    #process .row {
        grid-template-columns: 1fr !important;
    }
}

/* Tablet responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    #portfolio .row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .stats-section .row,
    #process .row {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* FORCE PROPER FOOTER GRID LAYOUT */
.footer-premium .row {
    display: grid !important;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr !important;
    gap: 3rem !important;
    margin: 0 !important;
    align-items: start !important;
}

.footer-premium .col-lg-4 {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    grid-column: span 1 !important;
}

.footer-premium .col-lg-2 {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    grid-column: span 1 !important;
}

.footer-premium .col-md-6 {
    flex: none !important;
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    grid-column: span 1 !important;
}

/* Ensure footer brand section takes more space */
.footer-premium .col-lg-4:first-child {
    grid-column: span 1 !important;
}

/* Footer responsive design */
@media (max-width: 768px) {
    .footer-premium .row {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .footer-premium .row {
        grid-template-columns: 1fr 1fr !important;
        gap: 2rem !important;
    }
}

/* Ensure footer sections are properly spaced */
.footer-premium {
    background: var(--primary-dark) !important;
    border-top: 1px solid var(--border-subtle) !important;
    padding: 80px 0 40px !important;
}

/* FIX HERO SECTION VERTICAL CENTERING */
.hero-section {
    padding: 0 !important;
    background: var(--gradient-background) !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.hero-content {
    position: relative !important;
    z-index: 2 !important;
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto !important;
    padding: 2rem !important;
}

/* Ensure hero section takes full viewport height and centers content */
body .hero-section {
    height: 100vh !important;
    min-height: 100vh !important;
    padding-top: 80px !important; /* Account for fixed navbar */
    padding-bottom: 0 !important;
    box-sizing: border-box !important;
}

/* Better spacing for hero elements */
.hero-title {
    font-size: 4rem !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    margin-bottom: 2rem !important;
    background: linear-gradient(135deg, #FFFFFF 0%, #ff6c00 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: -0.02em !important;
}

.hero-subtitle {
    font-size: 1.4rem !important;
    color: var(--text-secondary) !important;
    margin-bottom: 3rem !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

.hero-buttons {
    display: flex !important;
    gap: 1.5rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    margin-bottom: 0 !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-section {
        min-height: 90vh !important;
        height: 90vh !important;
        padding-top: 60px !important;
    }
    
    .hero-title {
        font-size: 2.8rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.1rem !important;
    }
}
