* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    border-bottom: 2px solid #000;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-brand a {
    font-size: 28px;
    font-weight: bold;
    color: #000;
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
}

.nav-brand a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.nav-brand a:hover::after {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-bottom: 2px solid transparent;
    position: relative;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #000;
    margin: 3px 0;
    transition: 0.3s;
}

/* ===== LOGO STYLES WITH IMAGE ===== */
.nav-brand a {
    text-decoration: none;
    display: block;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
}

/* Logo Image */
.logo-image {
    width: 40px;
    height: 40px;
    object-fit: contain;
    transition: all 0.3s ease;
    filter: brightness(0);
    /* Makes black logo */
}

/* Jika logo berwarna dan ingin hitam putih */
.logo-image.black-white {
    filter: grayscale(100%) brightness(0);
}

/* Logo Text */
.logo-text {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

/* Hover Animation */
.logo-container:hover .logo-image {
    transform: scale(1.05) rotate(-2deg);
}

.logo-container:hover .logo-text {
    letter-spacing: 2px;
}

/* Active/Pressed state */
.logo-container:active .logo-image {
    transform: scale(0.95);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .logo-image {
        width: 35px;
        height: 35px;
    }

    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .logo-container {
        gap: 8px;
    }

    .logo-image {
        width: 30px;
        height: 30px;
    }

    .logo-text {
        font-size: 18px;
    }
}

/* Optional: Animation for page load */
@keyframes logoSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.logo-container {
    animation: logoSlideIn 0.5s ease-out;
}

/* Navbar scroll effect */
.navbar.scrolled .logo-image {
    filter: brightness(0);
    /* Tetap hitam saat di-scroll */
}

/* Jika ingin efek berbeda saat scroll */
.navbar.scrolled .logo-container {
    transform: scale(0.95);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: #fff;
    border-bottom: 2px solid #000;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 900;
    text-transform: uppercase;
    animation: slideInLeft 1s ease;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #333;
    animation: slideInLeft 1s ease 0.2s both;
}

.hero-text .btn {
    animation: slideInLeft 1s ease 0.4s both;
}

.btn i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(5px);
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInRight 1s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.profile-photo {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #000;
    box-shadow: 20px 20px 0 rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.profile-photo:hover {
    transform: translate(-5px, -5px);
    box-shadow: 25px 25px 0 rgba(0, 0, 0, 0.15);
}

.profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.profile-photo:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.photo-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.profile-photo:hover .photo-overlay {
    opacity: 1;
    transform: scale(1);
}

/* Sections */
section {
    padding: 100px 0;
    border-bottom: 1px solid #ddd;
}

.section-title {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #000;
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border: 2px solid #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    transition: left 0.3s ease;
}

.stat-item:hover::before {
    left: 0;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 10px 10px 0 #000;
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: block;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: bold;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px 20px;
    border: 2px solid #000;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.service-card:hover::before {
    transform: translateY(0);
}

.service-card:hover {
    color: #fff;
    transform: translateY(-5px);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(360deg);
    color: #fff;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: bold;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
}

/* Projects Section */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.project-card {
    border: 2px solid #000;
    background: #fff;
    transition: all 0.3s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 20px 20px 0 #000;
}

.project-image {
    height: 250px;
    overflow: hidden;
    border-bottom: 2px solid #000;
    position: relative;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.5s ease;
}

.project-card:hover .project-image img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-overlay i {
    color: #fff;
    font-size: 48px;
    transform: scale(0);
    transition: transform 0.3s ease 0.1s;
}

.project-card:hover .project-overlay i {
    transform: scale(1);
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: bold;
}

.project-client {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.project-client i {
    margin-right: 5px;
}

.project-desc {
    color: #333;
    margin-bottom: 15px;
}

.project-tech {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.project-tech span {
    background: #f0f0f0;
    padding: 5px 10px;
    font-size: 12px;
    border: 1px solid #000;
    transition: all 0.3s ease;
}

.project-tech span:hover {
    background: #000;
    color: #fff;
}

/* Contact Section */
.contact {
    background: #fff;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatReverse 20s infinite linear;
}

@keyframes floatReverse {
    0% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact-info h3 i {
    margin-right: 10px;
    color: #000;
    animation: wink 2s infinite;
}

@keyframes wink {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.contact-info>p {
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border: 2px solid #000;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.contact-card:hover::before {
    transform: translateX(0);
}

.contact-card:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 10px 10px 0 #000;
}

.contact-card:hover .contact-icon-wrapper {
    background: #fff;
    color: #000;
}

.contact-card:hover a,
.contact-card:hover p,
.contact-card:hover span {
    color: #fff;
}

.contact-icon-wrapper {
    min-width: 50px;
    height: 50px;
    background: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon-wrapper {
    animation: shake 0.5s ease;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(0);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

.contact-detail h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.contact-detail a,
.contact-detail p {
    color: #000;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 3px;
    transition: color 0.3s ease;
}

.contact-detail span {
    font-size: 12px;
    color: #666;
    transition: color 0.3s ease;
}

.social-links {
    margin-top: 30px;
}

.social-links h4 {
    margin-bottom: 15px;
}

.social-links h4 i {
    margin-right: 8px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.social-icon:hover::before {
    transform: translateY(0);
}

.social-icon:hover {
    color: #fff;
    transform: translateY(-3px);
}

.social-icon i {
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}

/* ===== IMPROVED CTA SECTION ===== */
.contact-cta {
    background: #fff;
    border: 2px solid #000;
    padding: 50px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 0 #000;
}

.contact-cta:hover {
    transform: translateY(-5px);
    box-shadow: 15px 20px 0 #000;
}

/* Background Pattern */
.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 45%, rgba(0, 0, 0, 0.02) 50%, transparent 55%);
    background-size: 200% 200%;
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

.cta-content {
    max-width: 350px;
    position: relative;
    z-index: 2;
}

@keyframes rocketFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-10px) rotate(5deg);
    }

    75% {
        transform: translateY(5px) rotate(-5deg);
    }
}


@keyframes trailPulse {
    0% {
        height: 20px;
        opacity: 0.7;
        bottom: -10px;
    }

    50% {
        height: 60px;
        opacity: 0.3;
        bottom: -30px;
    }

    100% {
        height: 20px;
        opacity: 0.7;
        bottom: -10px;
    }
}

/* ===== CTA TEXT ===== */
.cta-text {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000;
    line-height: 1.3;
}

.highlight {
    position: relative;
    display: inline-block;
    padding: 0 5px;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
    z-index: -1;
}

.contact-cta:hover .highlight::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* ===== ENHANCED EMAIL BUTTON ===== */
.email-button-wrapper {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

.btn-email {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 18px 35px;
    background: #000;
    color: #fff;
    text-decoration: none;
    border: 2px solid #000;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
}

.btn-email::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #fff;
    transition: left 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
    z-index: -1;
}

.btn-email:hover::before {
    left: 0;
}

.btn-email:hover {
    color: #000;
}

.btn-text {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 1px;
    position: relative;
}

.btn-subtext {
    font-size: 14px;
    opacity: 0.8;
    position: relative;
    top: 2px;
}

.btn-icon {
    font-size: 24px;
    animation: paperPlane 2s infinite;
}

@keyframes paperPlane {

    0%,
    100% {
        transform: translateX(0) rotate(0);
    }

    25% {
        transform: translateX(5px) rotate(10deg);
    }

    75% {
        transform: translateX(-5px) rotate(-10deg);
    }
}

.button-glow {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #000, #333, #000);
    border-radius: 4px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    filter: blur(5px);
}

.email-button-wrapper:hover .button-glow {
    opacity: 0.5;
    animation: glowPulse 1.5s infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.3;
        filter: blur(8px);
    }

    50% {
        opacity: 0.7;
        filter: blur(12px);
    }
}

/* ===== DIVIDER ===== */
.divider {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 30px 0 20px;
}

.divider-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, #000, transparent);
}

.divider-text {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* ===== ENHANCED WHATSAPP LINK ===== */
.whatsapp-wrapper {
    position: relative;
}

.whatsapp-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.whatsapp-link-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 30px;
    background: #fff;
    color: #000;
    text-decoration: none;
    border: 2px solid #000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.whatsapp-link-enhanced::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.whatsapp-link-enhanced:hover::before {
    width: 300px;
    height: 300px;
}

.whatsapp-link-enhanced:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.whatsapp-icon {
    font-size: 28px;
    color: #25D366;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp-link-enhanced:hover .whatsapp-icon {
    color: #fff;
    transform: scale(1.2) rotate(360deg);
}

@keyframes whatsappPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 5px #25D366);
    }
}

.whatsapp-number {
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
}

@keyframes badgePulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.05);
    }
}

/* ===== FLOATING PARTICLES ===== */
.cta-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.cta-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #000;
    border-radius: 50%;
    opacity: 0.2;
    animation: particleFloat 3s infinite;
}

.cta-particles span:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.cta-particles span:nth-child(2) {
    top: 70%;
    right: 15%;
    width: 6px;
    height: 6px;
    animation-delay: 1s;
}

.cta-particles span:nth-child(3) {
    bottom: 30%;
    left: 20%;
    width: 3px;
    height: 3px;
    animation-delay: 1.5s;
}

.cta-particles span:nth-child(4) {
    top: 40%;
    right: 25%;
    width: 5px;
    height: 5px;
    animation-delay: 2s;
}

.cta-particles span:nth-child(5) {
    bottom: 20%;
    right: 40%;
    width: 4px;
    height: 4px;
    animation-delay: 2.5s;
}

@keyframes particleFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.6;
    }

    100% {
        transform: translateY(-40px) rotate(360deg);
        opacity: 0;
    }
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */
@media (max-width: 768px) {
    .contact-cta {
        padding: 40px 20px;
    }

    .cta-text {
        font-size: 24px;
    }

    .btn-email {
        padding: 15px 25px;
    }

    .btn-text {
        font-size: 18px;
    }

    .whatsapp-link-enhanced {
        padding: 12px 20px;
    }

    .whatsapp-number {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .btn-email {
        flex-wrap: wrap;
        gap: 5px;
    }

    .btn-text,
    .btn-subtext {
        width: 100%;
    }

    .whatsapp-link-enhanced {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.whatsapp-link:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #000;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: #fff;
    color: #000;
}

.btn-large {
    padding: 18px 50px;
    font-size: 18px;
}

.btn i {
    margin-right: 8px;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 80px 0 20px;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand h3 {
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.footer-brand h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-brand:hover h3::after {
    width: 100%;
}

.footer-brand p {
    color: #ccc;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50%;
}

.footer-social a:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

.footer-links h4 {
    margin-bottom: 20px;
    font-size: 18px;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.footer-links:hover h4::after {
    width: 100%;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.footer-links a i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(5px);
}

.footer-links a:hover i {
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

.footer-bottom i {
    color: #ff4444;
    animation: heartbeat 1.5s ease infinite;
    margin: 0 3px;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .profile-photo {
        width: 350px;
        height: 350px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: 40px 0;
        gap: 20px;
        border-bottom: 2px solid #000;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .profile-photo {
        width: 300px;
        height: 300px;
    }

    .about-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .profile-photo {
        width: 250px;
        height: 250px;
    }

    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
}