/* REG GROUP LTD - Developer-Style IT Consulting Website */

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

body {
    font-family: 'Consolas', 'Monaco', 'Courier New', monospace;
    line-height: 1.6;
    color: #e4e4e4;
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
}

/* Header & Navigation */
.navbar {
    background: rgba(13, 17, 23, 0.95);
    box-shadow: 0 2px 20px rgba(255, 215, 0, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo h1 {
    color: #FFD700;
    font-size: 1.8rem;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #e4e4e4;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #FFD700;
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
}

/* Main Content */
main {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    min-height: 600px;
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.code-line {
    font-size: 1.1rem;
    color: #8B949E;
    margin-bottom: 0.5rem;
    font-family: 'Consolas', monospace;
    text-indent: 1rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

.hero-image {
    flex: 1;
}

/* Terminal Styling */
.code-terminal {
    background: #0d1117;
    border: 2px solid #FFD700;
    border-radius: 12px;
    padding: 0;
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
    font-family: 'Consolas', monospace;
    max-width: 500px;
    margin: 0 auto;
}

.terminal-header {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    padding: 0.8rem 1rem;
    border-radius: 10px 10px 0 0;
    color: #0d1117;
    font-weight: bold;
}

.terminal-content {
    padding: 1.5rem;
    color: #58a6ff;
}

.terminal-content p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.cursor-blink {
    animation: blink 1s infinite;
    color: #FFD700;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Buttons */
.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: 'Consolas', monospace;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0d1117;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    border: 1px solid #FFD700;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFA500 0%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
}

/* Stats Section */
.stats {
    padding: 6rem 2rem;
    background: rgba(22, 27, 34, 0.8);
}

.stats h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

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

.stat-card {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: all 0.3s;
}

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

.stat-number {
    font-size: 3rem;
    color: #FFD700;
    font-weight: bold;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.stat-label {
    font-size: 1.2rem;
    color: #e4e4e4;
    margin-bottom: 1rem;
}

.stat-code {
    font-family: 'Consolas', monospace;
    font-size: 0.9rem;
    color: #8B949E;
    background: rgba(255, 215, 0, 0.05);
    padding: 0.5rem;
    border-radius: 4px;
}

/* Tech Stack Section */
.tech-stack {
    padding: 6rem 2rem;
    background: #0d1117;
}

.tech-stack h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

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

.tech-category {
    background: rgba(22, 27, 34, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s;
}

.tech-category:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
}

.tech-category h3 {
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.4rem;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
}

.tech-tag {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0d1117;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.tech-tag:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: rgba(22, 27, 34, 0.5);
}

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

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
    font-family: 'Consolas', monospace;
}

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

.feature-card {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    text-align: center;
    transition: all 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #8B949E;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.feature-code {
    font-family: 'Consolas', monospace;
    font-size: 0.9rem;
    color: #58a6ff;
    background: rgba(255, 215, 0, 0.05);
    padding: 0.8rem;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* Process Section */
.process {
    padding: 6rem 2rem;
    background: #0d1117;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}

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

.process-step {
    background: rgba(22, 27, 34, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.process-step:hover {
    border-color: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.1);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0d1117;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-step h3 {
    color: #FFD700;
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.process-step p {
    color: #8B949E;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.step-code {
    font-family: 'Consolas', monospace;
    font-size: 0.9rem;
    color: #58a6ff;
    background: rgba(255, 215, 0, 0.05);
    padding: 0.6rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #161b22 0%, #0d1117 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: white;
    text-align: center;
    margin: 2rem;
    border-radius: 20px;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #8B949E;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    color: #e4e4e4;
    padding: 3rem 2rem 2rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

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

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

.footer-section a {
    color: #8B949E;
    text-decoration: none;
    transition: all 0.3s;
    padding: 0.2rem 0;
}

.footer-section a:hover {
    color: #FFD700;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #333;
    color: white;
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-link {
    color: #0066cc;
    text-decoration: none;
}

.cookie-link:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* Form Styles */
.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    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,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

/* Page-specific styles */
.page-header {
    background: #f8f9fa;
    padding: 4rem 2rem;
    text-align: center;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    color: #0066cc;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.content-section {
    padding: 4rem 2rem;
}

.content-section h2 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-left: 4px solid #0066cc;
}

.service-card h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}

.contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.contact-info h3 {
    color: #0066cc;
    margin-bottom: 1rem;
}