
/* Hybrid Theme Variables */
:root {
    --primary-dark: #000000;
    --secondary-dark: #1a1a1a;
    --light-bg: #f8f9fa;
    --white-bg: #ffffff;
    --gold-primary: #FFD700;
    --gold-secondary: #B8860B;
    --text-light: #ffffff;
    --text-dark: #2c3e50;
    --text-medium: #5a6c7d;
    --text-muted: #6c757d;
    --border-light: #dee2e6;
    --shadow-soft: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base styles with smooth transitions */
body {
    margin: 0;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: var(--primary-dark);
    color: var(--text-light);
    opacity: 0;
    animation: fadeInPage 1s ease-in forwards;
    transition: var(--transition-smooth);
    line-height: 1.6;
}

/* Page fade-in animation */
@keyframes fadeInPage {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Header animations */
header {
    text-align: center;
    padding: 10px 15px 5px 15px;
    animation: slideInFromTop 1.2s ease-out;
}

@keyframes slideInFromTop {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.logo {
    width: 160px;
    display: block;
    margin: 0 auto 10px auto;
    transition: transform 0.4s ease, filter 0.3s ease;
    animation: logoGlow 2s ease-in-out infinite alternate;
}

.logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 0 20px #FFD700);
}

@keyframes logoGlow {
    from { filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6)); }
}

/* Logo Hero Section */
.logo-hero-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    opacity: 1;
    padding: 10px 0;
}

.logo-container {
    position: relative;
    background: radial-gradient(circle at center, 
        rgba(255, 215, 0, 0.05) 0%, 
        rgba(255, 215, 0, 0.02) 50%, 
        transparent 80%);
    border-radius: 50%;
    padding: 15px;
    backdrop-filter: blur(15px);
}



.company-logo {
    width: 280px;
    height: 280px;
    filter: drop-shadow(0 8px 25px rgba(255, 215, 0, 0.3));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 40%, 
        transparent 70%);
    border-radius: 50%;
    padding: 15px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    mask: radial-gradient(circle at center, 
        black 40%, 
        rgba(0, 0, 0, 0.8) 60%, 
        rgba(0, 0, 0, 0.3) 80%, 
        transparent 100%);
    -webkit-mask: radial-gradient(circle at center, 
        black 40%, 
        rgba(0, 0, 0, 0.8) 60%, 
        rgba(0, 0, 0, 0.3) 80%, 
        transparent 100%);
}

.company-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 12px 35px rgba(255, 215, 0, 0.5));
}

.hero-text {
    flex: 1;
    min-width: 300px;
    text-align: left;
    opacity: 1;
}





/* Modern Image Blending Styling */
.section-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: contrast(1.05) brightness(1.02) saturate(0.9);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 215, 0, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
}

.section-image:hover {
    transform: translateY(-8px) scale(1.02);
    filter: contrast(1.1) brightness(1.05) saturate(1.0);
    box-shadow: 
        0 30px 60px rgba(255, 215, 0, 0.2),
        0 0 0 1px rgba(255, 215, 0, 0.3),
        0 0 50px rgba(255, 215, 0, 0.1);
}

/* Sophisticated Image Container */
.image-content {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05), 
        rgba(255, 215, 0, 0.02));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.08) 0%, 
        transparent 25%, 
        transparent 75%, 
        rgba(0, 0, 0, 0.03) 100%);
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
    mix-blend-mode: overlay;
}

.image-content::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 215, 0, 0.3), 
        transparent 30%, 
        transparent 70%, 
        rgba(255, 215, 0, 0.3));
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-content:hover::after {
    opacity: 1;
}

/* Watermark removal overlay */
.section-image::after {
    content: '';
    position: absolute;
    bottom: 15px;
    right: 15px;
    width: 180px;
    height: 40px;
    background: linear-gradient(135deg, 
        rgba(248, 249, 250, 0.95) 0%, 
        rgba(255, 255, 255, 0.9) 100%);
    border-radius: 8px;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Testimonials Styling */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 15px;
    padding: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.2);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1em;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

.testimonial-author strong {
    color: #FFD700;
    font-size: 1.1em;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #ccc;
    font-size: 0.9em;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    background: rgba(255, 215, 0, 0.1);
    padding: 20px;
    cursor: pointer;
    font-weight: bold;
    color: #FFD700;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 215, 0, 0.2);
}

.faq-answer {
    padding: 20px;
    color: #fff;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.faq-toggle {
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

/* Pricing Cards */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 215, 0, 0.02));
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.pricing-card.featured {
    border-color: #FFD700;
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.8em;
}

.pricing-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: bold;
}

.pricing-price {
    font-size: 2.5em;
    color: #fff;
    margin-bottom: 20px;
    font-weight: bold;
}

.pricing-period {
    font-size: 0.9em;
    color: #ccc;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.pricing-features li {
    padding: 8px 0;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    display: inline-block;
}

.pricing-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo-hero-section {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-text {
        text-align: center;
        transform: translateY(30px);
    }
    
    .company-logo {
        width: 160px;
        height: 160px;
        padding: 10px;
    }
    
    .logo-container {
        padding: 15px;
    }
    
    .logo-hero-section {
        gap: 20px;
        padding: 15px 0;
    }
    
    .logo-container::before {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }
    
    .logo-container::after {
        width: 120px;
        height: 120px;
    }
    
    .section-image {
        clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    }
    
    .image-content {
        margin: 20px 0;
    }
    
    .two-column-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    @keyframes textReveal {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
}

h1 {
    color: #FFD700;
    font-size: 2em;
    animation: slideInFromLeft 1.5s ease-out;
    transition: text-shadow 0.3s ease;
}

h1:hover {
    text-shadow: 0 0 20px #FFD700, 0 0 40px #FFD700;
}

@keyframes slideInFromLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

h2 {
    color: #fff;
    margin-top: -10px;
    animation: slideInFromRight 1.5s ease-out;
    transition: all 0.3s ease;
}

h2:hover {
    color: #FFD700;
    transform: scale(1.02);
}

@keyframes slideInFromRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Navigation with hybrid styling */
nav {
    margin-top: 15px;
    animation: fadeInUp 1.8s ease-out;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 20px 0;
    border-radius: 0 0 15px 15px;
    box-shadow: var(--shadow-medium);
}

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

/* Unified Navigation Styling - Mobile First */
nav {
    margin-top: 15px !important;
    animation: fadeInUp 1.8s ease-out;
    text-align: center !important;
    padding: 20px 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

nav ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

nav li {
    margin: 0 !important;
    flex-shrink: 0;
}

nav a {
    display: inline-block !important;
    padding: 8px 16px !important;
    text-decoration: none !important;
    color: #FFD700 !important;
    font-weight: 700 !important;
    font-size: 0.9rem !important;
    border: 2px solid #FFD700 !important;
    border-radius: 6px !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    min-width: fit-content !important;
    cursor: pointer !important;
    box-sizing: border-box !important;
}

/* Force all navigation to be horizontal */
nav ul li {
    display: inline-flex !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}

nav a::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, #FFD700, #B8860B) !important;
    transition: left 0.3s ease !important;
    z-index: -1 !important;
}

nav a:hover {
    color: #000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4) !important;
}

nav a:hover::before {
    left: 0 !important;
}

/* Navigation Reset and Override - HIGHEST PRIORITY */
html body nav ul {
    display: flex !important;
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
    width: 100% !important;
}

html body nav ul li {
    display: inline-block !important;
    margin: 0 !important;
    list-style: none !important;
}

html body nav ul li a {
    color: #FFD700 !important;
    border: 2px solid #FFD700 !important;
    padding: 8px 16px !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    background: transparent !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    overflow: hidden !important;
    display: inline-block !important;
    cursor: pointer !important;
}

html body nav ul li a:hover {
    color: #000 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4) !important;
}

/* Responsive navigation for smaller screens */
@media (max-width: 600px) {
    nav ul {
        gap: 6px !important;
    }
    
    nav a {
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
        border-width: 1px !important;
    }
}

@media (max-width: 480px) {
    nav ul {
        gap: 4px !important;
    }
    
    nav a {
        padding: 5px 8px !important;
        font-size: 0.75rem !important;
    }
}

/* Hero image animations */
.image-hero {
    overflow: hidden;
    animation: fadeInUp 2s ease-out;
}

.image-hero img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.image-hero img:hover {
    transform: scale(1.02);
    filter: brightness(1.1) contrast(1.1);
}

/* Section animations */
section {
    padding: 30px 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInSection 1s ease-out forwards;
}

section:nth-child(3) { animation-delay: 0.3s; }
section:nth-child(4) { animation-delay: 0.6s; }
section:nth-child(5) { animation-delay: 0.9s; }
section:nth-child(6) { animation-delay: 1.2s; }

@keyframes fadeInSection {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section h3 {
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

section h3:hover {
    color: #FFD700;
    transform: scale(1.05);
}

section h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: width 0.4s ease;
}

section h3:hover::after {
    width: 100%;
}

/* Services list animations */
.services ul {
    list-style: disc;
    padding-left: 20px;
    text-align: left;
    display: inline-block;
}

.services li {
    transition: all 0.3s ease;
    padding: 5px 0;
    position: relative;
}

.services li:hover {
    color: #FFD700;
    transform: translateX(10px);
    text-shadow: 0 0 10px #FFD700;
}

.services li::before {
    content: '⭐';
    position: absolute;
    left: -25px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.services li:hover::before {
    opacity: 1;
}

/* Footer animations */
footer {
    background: #111;
    padding: 20px;
    text-align: center;
    font-size: 0.9em;
    animation: slideInFromBottom 2s ease-out;
    transition: background 0.3s ease;
}

footer:hover {
    background: #1a1a1a;
}

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

footer a {
    color: #FFD700;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 2px 5px;
    border-radius: 3px;
}

footer a:hover {
    background: #FFD700;
    color: #000;
    transform: scale(1.1);
    box-shadow: 0 3px 10px rgba(255, 215, 0, 0.3);
}

/* Pulse animation for important elements */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ====== HYBRID THEME SECTIONS ====== */

/* Light content sections (like reference images) */
.light-section {
    background: var(--white-bg);
    color: var(--text-dark);
    margin: 60px 0;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    position: relative;
    overflow: hidden;
    padding: 80px 40px;
}

.light-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-secondary));
}

.light-section h2 {
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
}

.light-section h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.light-section p {
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Professional image styling */
.professional-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: var(--transition-smooth);
    margin: 30px 0;
    width: 100%;
    max-width: 500px;
    height: 300px;
    object-fit: cover;
    object-position: center;
}

.professional-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Column image container */
.column-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Two-column layout for light sections */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin: 40px 0;
}

.column-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.column-content p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Services grid for light sections */
.services-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.service-card-light {
    background: var(--light-bg);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid var(--border-light);
}

.service-card-light:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
    border-color: var(--gold-primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-dark);
    color: var(--primary-dark);
    font-weight: bold;
}

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

.service-card-light p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.5;
}

/* Call-to-action button for light sections */
.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-secondary));
    color: var(--primary-dark);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    margin-top: 30px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
    color: var(--primary-dark);
}

/* Responsive design for hybrid theme */
@media (max-width: 768px) {
    .two-column {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .light-section {
        margin: 30px 0;
        padding: 40px 20px;
    }
    
    .services-grid-light {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .column-content h3 {
        font-size: 1.8rem;
    }
}

/* Responsive animations - reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
