:root {
    --dark-gray: #292929;
    --teal: #008DA3;
    --light-blue-gray: #E8F1F2;
    --light-green: #B3EFB2;
    --text-dark: #292929;
    --text-light: #E8F1F2;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
}

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

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navigation */
.main-nav {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(41, 41, 41, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
}

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

.logo {
    color: var(--light-blue-gray);
    font-size: 1.5rem;
    font-weight: bold;
}

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

.nav-links a {
    color: var(--light-blue-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--teal);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--dark-gray);
    overflow: hidden;
    text-align: center;
    color: var(--text-light);
    padding: 2rem;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    z-index: 1;
    background: linear-gradient(135deg, var(--text-light), var(--teal), var(--light-green));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp 1.2s ease-out, gradientShift 5.2s ease-in-out infinite;
}

.hero-subtitle {
    font-size: 1.3rem;
    z-index: 1;
    animation: fadeInUp 1.5s ease-out;
    opacity: 0.9;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2.5rem 0;
    animation: fadeInUp 1.8s ease-out;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
}

.feature-icon {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--teal), var(--light-green));
    border-radius: 2px;
    margin-bottom: 0.5rem;
}

.feature-item span:last-child {
    font-size: 0.95rem;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    animation: fadeInUp 2.1s ease-out;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    animation: pulse 3s infinite;
}

.hero-button.primary {
    background: var(--teal);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 141, 163, 0.3);
}

.hero-button.secondary {
    background: transparent;
    color: var(--teal);
    border: 2px solid var(--teal);
}

.hero-button:hover.primary {
    background: #007a8f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 141, 163, 0.4);
}

.hero-button:hover.secondary {
    background: var(--teal);
    color: white;
    transform: translateY(-2px);
}

.background-accent {
    position: absolute;
    overflow: hidden;
    z-index: 0;
    opacity: 0.1;
    background-size: cover;
    background-position: center;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transition: transform 0.5s ease-out;
}

.accent-top {
    top: -15%;
    right: -15%;
    width: 40%;
    height: 70%;
    background-image: url('/public/assets/images/banner.jpeg');
    background-size: cover;
    background-position: center;
    transform: rotate(15deg);
    opacity: 0.15;
}

.accent-center {
    top: 20%;
    left: -10%;
    width: 35%;
    height: 60%;
    background-image: url('/public/assets/images/image 1.jpeg');
    background-size: cover;
    background-position: center;
    transform: rotate(-10deg);
    opacity: 0.15;
    mix-blend-mode: multiply;
    filter: contrast(1.2);
}

.accent-bottom {
    bottom: 10%;
    right: -10%;
    width: 45%;
    height: 60%;
    background-image: url('/public/assets/images/image2.jpeg');
    background-size: cover;
    background-position: center;
    transform: rotate(-5deg);
    opacity: 0.1;
}

/* Services Section */
.services {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--light-blue-gray);
    position: relative;
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(50px);
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 141, 163, 0.2);
}


/* Pricing Section */
.pricing {
    padding: var(--spacing-lg) var(--spacing-md);
    background: white;
    position: relative;
}

.pricing h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--teal);
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--dark-gray);
    margin: 1rem 0;
}

.price span {
    font-size: 1rem;
    color: #666;
}

.price-original {
    font-size: 1.2rem;
    color: #999;
    text-decoration: line-through;
    margin-bottom: 0.5rem;
}

.hosting-deal {
    color: var(--teal) !important;
    font-weight: bold;
}

.hosting-discount {
    font-size: 0.9rem;
    color: var(--teal);
    font-weight: bold;
    margin-bottom: 1rem;
}

.price-breakdown {
    background: rgba(232, 241, 242, 0.1);
    padding: 1rem;
    border-radius: 0.5rem;
    margin: 1rem 0;
    font-size: 0.9rem;
}

.breakdown-item {
    display: flex;
    justify-content: space-between;
    margin: 0.5rem 0;
    padding: 0.25rem 0;
    border-bottom: 1px solid rgba(232, 241, 242, 0.2);
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item span:last-child {
    font-weight: bold;
    color: var(--teal);
}

.hosting-note, .consultation-note {
    background: rgba(179, 239, 178, 0.2);
    color: var(--teal);
    padding: 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.85rem;
    text-align: center;
    margin-top: 1rem;
    font-weight: bold;
}

.pricing-card ul {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.pricing-card li {
    margin: 1rem 0;
    padding-left: 1.5rem;
    position: relative;
    text-align: left;
}

.pricing-card li::before {
    content: "✓";
    color: var(--teal);
    position: absolute;
    left: 0;
}

.cta-button {
    display: inline-block;
    width: 100%;
    background: var(--teal);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
}

.cta-button:hover {
    background: #007a8f;
}

/* Contact Section */
.contact {
    padding: var(--spacing-lg) var(--spacing-md);
    background: var(--dark-gray);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    position: relative;
    z-index: 1;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
}

.contact-info p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.contact-info a {
    color: var(--teal);
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--light-green);
}

.contact-form {
    display: grid;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 0.5rem;
    background: rgba(232, 241, 242, 0.1);
    color: var(--text-light);
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(232, 241, 242, 0.7);
}

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

.submit-button {
    background: var(--teal);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 1rem;
    font-weight: bold;
}

.submit-button:hover {
    background: #007a8f;
}

.thank-you-message {
    text-align: center;
    padding: 2rem;
    background: rgba(179, 239, 178, 0.1);
    border-radius: 0.5rem;
    border: 1px solid var(--light-green);
}

.thank-you-message h3 {
    color: var(--light-green);
    margin-bottom: 0.5rem;
}

.thank-you-message p {
    color: var(--text-light);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--text-light);
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(232, 241, 242, 0.2);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-button {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        text-align: center;
        gap: 2rem;
    }
    
    .contact-info p {
        font-size: 1.1rem;
    }
    
    .contact-info a {
        font-size: 1.2rem;
    }
    
    .background-accent {
        opacity: 0.05;
        width: 70%;
    }
    
    .accent-top {
        right: -35%;
    }
    
    .accent-center {
        left: -30%;
    }
    
    .accent-bottom {
        right: -25%;
    }
}

/* Add subtle hover effects for interactivity */
@media (hover: hover) {
    .accent-top:hover {
        transform: rotate(12deg) scale(1.05);
        opacity: 0.2;
    }
    
    .accent-center:hover {
        transform: rotate(-8deg) scale(1.05);
        opacity: 0.2;
    }
    
    .accent-bottom:hover {
        transform: rotate(-3deg) scale(1.05);
        opacity: 0.15;
    }
}

/* Keyframe Animations */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(var(--initial-rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(calc(var(--initial-rotation, 0deg) + 5deg));
    }
}

/* Add pulsing CTA buttons */
.cta-button {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 141, 163, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 141, 163, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 141, 163, 0);
    }
}

@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}