:root {
    --primary: #dc2626; /* Red */
    --primary-dark: #b91c1c;
    --secondary: #0f172a;
    --accent: #f59e0b; /* Yellow/Orange */
    --light: #fffbeb; /* Light yellow background */
    --gray: #64748b;
    --light-gray: #f8fafc;
    --success: #16a34a;
    --border: #e2e8f0;
    --gradient: linear-gradient(135deg, #f59e0b 0%, #dc2626 100%);
    --gradient-reverse: linear-gradient(135deg, #dc2626 0%, #f59e0b 100%);
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--secondary);
    background-color: white;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.2rem;
    color: var(--secondary);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin: 2.5rem 0 1.2rem 0;
    color: var(--secondary);
}

p {
    margin-bottom: 1.5rem;
    color: var(--gray);
    font-size: 1.1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.hero-content {
    display: flex;
    align-items: left;
    gap: 70px;
    flex-wrap: wrap;
}

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

.hero-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    position: relative;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1rem;
    color: var(--gray);
}

/* CSS Animation - Website Building */
.animation-container {
    width: 100%;
    max-width: 420px;
    height: auto;
    aspect-ratio: 1/1;
    position: relative;
}

.computer {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 3/2;
    background: white;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    margin: 0 auto;
    overflow: hidden;
    animation: float 4s ease-in-out infinite;
}

.computer-screen {
    width: 100%;
    height: 80%;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    position: relative;
    overflow: hidden;
}

.computer-base {
    width: 30%;
    height: 10%;
    background: #94a3b8;
    margin: 0 auto;
    border-radius: 10px;
}

/* Animated elements inside computer screen */
.website-elements {
    position: absolute;
    top: 15%;
    left: 15%;
    width: 70%;
    height: 70%;
}

.header-bar {
    height: 25%;
    background: var(--gradient);
    border-radius: 12px;
    margin-bottom: 8%;
    animation: slideIn 1.5s ease-out 0.5s both;
}

.content-block {
    display: flex;
    gap: 5%;
    margin-bottom: 8%;
    height: 30%;
}

.text-column {
    flex: 2;
}

.image-column {
    flex: 1;
    background: var(--light-gray);
    border-radius: 12px;
    animation: fadeIn 1s ease-out 1s both;
}

.text-line {
    height: 15%;
    background: var(--light-gray);
    border-radius: 8px;
    margin-bottom: 5%;
    animation: slideIn 1s ease-out 1.2s both;
}

.text-line.short {
    width: 60%;
    animation-delay: 1.4s;
}

.button-element {
    width: 40%;
    height: 20%;
    background: var(--gradient);
    border-radius: 12px;
    margin-top: 5%;
    animation: pulse 2s ease-in-out 1.6s infinite;
}

/* WordPress Intro Section */
.wordpress-intro {
    padding: 100px 0;
    background: white;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.7;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.content-text {
    padding-right: 20px;
}

.content-text p {
    text-align: left !important;
}

.stats-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.stat-card {
    background: var(--light);
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
}

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    border: 2px solid var(--border);
    color: var(--primary);
}

.stat-value {
    font-size: 2.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--gray);
    font-size: 1rem;
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.benefit-card {
    background: white;
    border-radius: 18px;
    padding: 40px 35px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.benefit-icon {
    font-size: 2.4rem;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 16px;
    border: 2px solid var(--border);
    color: var(--primary);
}

.benefit-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--secondary);
}

.benefit-card p {
    color: var(--gray);
    margin-bottom: 18px;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Business Impact Section */
.business-impact {
    padding: 100px 0;
    background: white;
}

.impact-content {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 3px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

.service-card {
    background: white;
    border-radius: 18px;
    padding: 45px 35px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 2px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 2.4rem;
    margin-bottom: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 16px;
    border: 2px solid var(--border);
    color: var(--primary);
}

.service-card h3 {
    font-size: 1.6rem;
    margin-bottom: 18px;
    color: var(--secondary);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 25px 0 30px 0;
    padding-left: 10px;
}

.service-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

.service-features li::before {
    content: "✓";
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 20px;
}

/* Service Areas */
.service-areas {
    padding: 100px 0;
    background: white;
}

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

.area-item {
    background: var(--light);
    padding: 25px 20px;
    border-radius: 14px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    color: var(--secondary);
    font-weight: 600;
    border: 2px solid var(--border);
    font-size: 1.1rem;
}

.area-item:hover {
    transform: translateY(-3px);
    background: var(--light);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.1);
}

/* CTA Section - OVERRIDE ALL EXISTING STYLES */
.cta-section {
    padding: 100px 0 !important;
    background: linear-gradient(135deg, #dc2626 0%, #0f172a 100%) !important;
    color: white !important;
    text-align: center !important;
}

.cta-content {
    max-width: 750px !important;
    margin: 0 auto !important;
}

.cta-section h2 {
    font-size: 2.5rem !important;
    margin-bottom: 20px !important;
    color: white !important;
    font-weight: bold !important;
}

.cta-section p {
    margin-bottom: 40px !important;
    opacity: 1 !important;
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
    color: #ffffff !important;
    font-weight: bold !important;
}

.contact-form {
    background: white;
    padding: 45px;
    border-radius: 20px;
    margin-top: 30px;
    color: var(--secondary);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border: 2px solid var(--border);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.05rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

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

.submit-button {
    background: var(--gradient-reverse);
    color: white;
    padding: 16px 45px;
    border-radius: 14px;
    border: 2px solid transparent;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    font-family: 'Poppins', sans-serif;
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.3);
    border-color: var(--primary);
}

/* Buttons */
.cta-button {
    background: var(--gradient);
    color: white;
    padding: 12px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.25);
    border-color: var(--primary);
}

/* CSS Animations */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

/* Responsive Design */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: left;
    }
    
    .content-text {
        padding-right: 0;
    }
    
    .stats-cards {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-content {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.3rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-text {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero p {
        text-align: center;
        max-width: 600px;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .animation-container {
        max-width: 280px;
    }
    
    .computer {
        max-width: 240px;
    }
    
    .benefits-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .stat-card {
        padding: 20px;
    }
    
    .benefit-card,
    .service-card {
        padding: 30px 25px;
    }
}