/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #000000;
    --dark: #0a0a0a;
    --dark-card: #111111;
    --white: #ffffff;
    --red: #e6007e;
    --pink: #e6007e;
    --gray: #888888;
    --light-gray: #cccccc;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.red {
    color: var(--red);
}

.white {
    color: var(--white);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--red);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #c92d3a;
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-call {
    background-color: transparent;
    color: var(--pink);
    border: 1px solid var(--pink);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-call:hover {
    background-color: var(--pink);
    color: var(--white);
}

/* Floating Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1160px;
    background-color: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 24px;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.98);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-heart {
    color: var(--pink);
    font-size: 28px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-rozmah {
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-digital {
    font-size: 12px;
    font-weight: 500;
    color: var(--pink);
    letter-spacing: 4px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--light-gray);
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--red);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 20px 80px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-digital {
    font-size: 64px;
    font-weight: 500;
    color: var(--pink);
    letter-spacing: 4px;
    margin-left: 16px;
}

.hero-subtitle {
    font-size: 24px;
    color: var(--red);
    margin-bottom: 16px;
    font-weight: 500;
}

.hero-description {
    font-size: 16px;
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* Section Styles */
.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--gray);
    text-align: center;
    margin-bottom: 48px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background-color: var(--dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 28px 24px;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--red);
    transform: translateY(-4px);
}

.service-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 6px;
    margin-bottom: 16px;
}

.service-icon i {
    font-size: 20px;
    color: var(--red);
}

.service-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.5;
}

.service-tags {
    display: flex;
    gap: 8px;
}

.service-tags span {
    font-size: 11px;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    color: var(--light-gray);
}

/* Team Section */
.team {
    padding: 80px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 700px;
    margin: 0 auto;
}

.team-card {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    border-color: var(--red);
}

.team-avatar {
    margin-bottom: 16px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: rgba(230, 57, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid var(--red);
}

.avatar-placeholder i {
    font-size: 32px;
    color: var(--red);
}

.team-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
}

.team-role {
    font-size: 13px;
    color: var(--red);
    margin-bottom: 12px;
}

.team-email {
    font-size: 12px;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 16px;
}

.team-email:hover {
    color: var(--red);
}

.team-skills {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.team-skills span {
    font-size: 11px;
    padding: 4px 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    color: var(--light-gray);
}

.team-social {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.team-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.team-social a:hover {
    border-color: var(--red);
    color: var(--red);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background-color: var(--dark);
    text-align: center;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 12px;
}

.cta p {
    color: var(--gray);
    margin-bottom: 24px;
}

/* Footer */
.footer {
    padding: 60px 0 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo .logo-heart {
    font-size: 24px;
}

.footer-logo .logo-rozmah {
    font-size: 16px;
}

.footer-logo .logo-digital {
    font-size: 10px;
}

.footer-col p {
    font-size: 13px;
    color: var(--gray);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col ul li a,
.footer-col ul li {
    font-size: 13px;
    color: var(--gray);
}

.footer-col ul li a:hover {
    color: var(--red);
}

.footer-col ul li i {
    margin-right: 8px;
    color: var(--red);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--gray);
    transition: all 0.3s ease;
}

.footer-social a:hover {
    border-color: var(--red);
    color: var(--red);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 12px;
    color: var(--gray);
}

/* Page Header */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    background-color: var(--dark);
}

.page-header h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.page-header p {
    color: var(--gray);
}

/* Page Content */
.page-content {
    padding: 60px 0;
}

.page-content h2 {
    font-size: 20px;
    font-weight: 600;
    margin: 32px 0 12px;
    color: var(--white);
}

.page-content h2:first-child {
    margin-top: 0;
}

.page-content p {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 16px;
    line-height: 1.7;
}

.page-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.page-content ul li {
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    list-style: disc;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    font-size: 14px;
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--white);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--red);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.contact-info-card {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 24px;
    text-align: center;
}

.contact-info-card i {
    font-size: 24px;
    color: var(--red);
    margin-bottom: 12px;
}

.contact-info-card h4 {
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-card {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--red);
}

.pricing-card.featured {
    border-color: var(--red);
    position: relative;
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--red);
    color: var(--white);
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 3px;
}

.pricing-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-card .price {
    font-size: 36px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 8px;
}

.pricing-card .price span {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
}

.pricing-card .description {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 24px;
}

.pricing-features {
    text-align: left;
    margin-bottom: 24px;
}

.pricing-features li {
    font-size: 13px;
    color: var(--light-gray);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--red);
    font-size: 12px;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text h2 {
    margin-top: 0;
}

.about-image {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 40px;
    text-align: center;
}

.about-image .logo-large {
    font-size: 48px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.value-card {
    background-color: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 24px;
    text-align: center;
}

.value-card i {
    font-size: 28px;
    color: var(--red);
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-digital {
        font-size: 48px;
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        width: calc(100% - 20px);
        padding: 10px 16px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 10px;
        right: 10px;
        background-color: rgba(10, 10, 10, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 100px 15px 60px;
    }

    .hero-title {
        font-size: 32px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .hero-title i {
        font-size: 28px !important;
        margin-right: 8px !important;
    }

    .hero-digital {
        font-size: 32px;
        margin-left: 8px;
        letter-spacing: 2px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 14px;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 14px;
        padding: 0 10px;
    }

    .services {
        padding: 60px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .service-card {
        padding: 20px 16px;
    }

    .team {
        padding: 60px 0;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .team-card {
        padding: 24px 16px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-card {
        padding: 24px 16px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .footer-col {
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-social {
        justify-content: center;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .contact-form {
        padding: 0 10px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .cta {
        padding: 60px 0;
    }

    .cta h2 {
        font-size: 22px;
    }

    .cta p {
        font-size: 14px;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 26px;
    }

    .page-content {
        padding: 40px 0;
    }

    .page-content h2 {
        font-size: 18px;
    }

    .about-content {
        gap: 24px;
    }

    .about-image {
        padding: 24px;
    }

    .about-image .logo-large i {
        font-size: 40px !important;
    }

    .about-image .logo-rozmah {
        font-size: 28px !important;
    }

    .about-image .logo-digital {
        font-size: 14px !important;
    }

    /* Logo responsive */
    .logo-heart {
        font-size: 22px;
    }

    .logo-rozmah {
        font-size: 14px;
    }

    .logo-digital {
        font-size: 9px;
        letter-spacing: 3px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 26px;
    }

    .hero-title i {
        font-size: 24px !important;
    }

    .hero-digital {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    .section-title {
        font-size: 22px;
    }

    .service-card h3 {
        font-size: 15px;
    }

    .team-card h3 {
        font-size: 16px;
    }

    .team-email {
        font-size: 11px;
        flex-wrap: wrap;
    }

    .pricing-card .price {
        font-size: 28px;
    }

    .cta h2 {
        font-size: 20px;
    }

    .page-header h1 {
        font-size: 22px;
    }

    .container {
        padding: 0 15px;
    }
}

/* Smooth animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
