/* =========================================
   1. RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Segoe UI", sans-serif;
    background: #f7f9fc;
    color: #1a1a1a;
    
}

p {
    line-height: 1.7;
}

h1, h2, h3 {
    letter-spacing: -0.3px;
}

h2 {
    font-size: 30px;
    margin-bottom: 25px;
}

/* =========================================
   2. LAYOUT & UTILITIES
   ========================================= */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 20px;
	padding-left: 20px;
    padding-right: 20px;
}

section {
    padding: 100px 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   3. BUTTONS
   ========================================= */

.btn {
    display: flex;                 /* better alignment */
    align-items: center;           /* vertical center */
    justify-content: center;       /* horizontal center */

    width: 100%;
    margin-top: 20px;

    padding: 14px 20px;
    border-radius: 8px;

    font-size: 15px;               /* 🔑 unified text */
    font-weight: 600;
    line-height: 1;

    text-align: center;
    text-decoration: none;

    transition: all 0.25s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

/* PRIMARY */
.btn-primary {
    background: linear-gradient(135deg, #2f81d7, #4ea3ff);
    color: white;
    border: none;
    box-shadow: 0 6px 15px rgba(47,129,215,0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(47,129,215,0.35);
}

.btn-primary:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 10px rgba(47,129,215,0.25);
}

/* SECONDARY */
.btn-secondary {
    border: 1px solid #ccc;
    background: transparent;
}

/* OUTLINE */
.btn-outline {
    border: 2px solid #2f81d7;
    color: #2f81d7;
    background: transparent;
}

.btn-outline:hover {
    background: #2f81d7;
    color: white;
    transform: translateY(-2px);
}

/* =========================================
   4. HEADER & NAVIGATION
   ========================================= */

.header {
    position: sticky;            
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #eee;
    z-index: 1000;
	padding: 10px 0;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    background: rgba(255,255,255,0.95);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.logo span {
    font-size: 18px;
    font-weight: 600;
    color: #222;
}

.logo strong {
    color: #2f81d7;
}

.nav-list {
    display: flex;
    gap: 20px;
    list-style: none;
}

.nav a {
    text-decoration: none;
    color: #333;
}
.nav-list a:hover {
    color: #2f81d7 !important;
}

.nav a.active {
    color: #2f81d7;
    font-weight: 600;
}

/* =========================================
   5. HERO SECTION
   ========================================= */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #eef4ff, #ffffff);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-description {
    margin: 15px 0;
    font-size: 18px;
    color: #555;
    max-width: 500px;
}

/* Hero Image */
.album-cover img {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}
.platform-note {
    margin-top: 10px;
	margin-bottom: 10px;
    font-size: 14px;
    color: #4ea3ff;
}

/* =========================================
   6. SERVICES SECTION
   ========================================= */
.services {
    padding: 60px 0;
    background: #ffffff;
}

/* GRID (clean + responsive) */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);   /* desktop = 4 columns */
    gap: 25px;
}

/* CARD */
.service-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid #f1f1f1;
    transition: all 0.3s ease;

    display: flex;              /* 🔑 IMPORTANT */
    flex-direction: column;    /* 🔑 IMPORTANT */
    height: 100%;              /* 🔑 SAME HEIGHT */
}

/* HOVER (polished) */
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.12);
}

/* ICON */
.service-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 15px;
    transition: 0.3s ease;
}

/* ICON HOVER EFFECT */
.service-card:hover .service-icon {
    transform: scale(1.1);
}

/* TEXT SPACING */
.service-card h3 {
    margin-bottom: 10px;
}

.service-card p {
    color: #555;
    line-height: 1.5;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   7. WORK / PRICING SECTION
   ========================================= */
   
/* GRID */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: auto;
}

/* CARD */
.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #eee;
    transition: 0.3s;

    display: flex;
    flex-direction: column;
    justify-content: space-between;   /* 🔑 key fix */

    margin-top: 20px;
}

/* CONTENT AREA */
.pricing-card > div {
    flex-grow: 1;
}

/* LIST */
.pricing-card ul {
    margin-top: 10px;
    margin-bottom: 10px;
}

/* BUTTON */
.pricing-card .btn {
    width: 100%;
    margin-top: 20px;
}

/* FEATURED CARD */
.pricing-card.featured {
    border: 2px solid #2f81d7;
	background: #ffffff;
    box-shadow: 0 10px 30px rgba(47,129,215,0.15);
}
.pricing-card:not(.featured) {
    background: #fafafa;
}

/* BADGE */
.badge {
    background: #2f81d7;
    color: white;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    margin-bottom: 10px;
    display: inline-block;
	margin-bottom: 12px;
}

/* PRICE */
.price {
    font-size: 32px;
    font-weight: bold;
    margin: 10px 0 15px 0;  /* improved spacing */
	font-weight: 700;
}

/* NOTE */
.pricing-note {
    font-size: 13px;
    color: #777;
    margin-top: 12px;
    text-align: center;   /* better visual balance */
}
   
   
.work {
    padding: 60px 0;
    background: #eef3f8;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.work-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #eee;
    transition: 0.3s;
}

.work-card:hover {
    /* Added hover effect for consistency */
    transform: translateY(-5px);
}

.work-card:nth-child(2) {
    border: 2px solid #2f81d7;
    transform: scale(1.05);
}

.work-card h2 {
    font-size: 32px;
    color: #2f81d7;
}

/* =========================================
   8. TESTIMONIALS SECTION
   ========================================= */
.testimonials {
    padding: 60px 0;
    background: #ffffff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.testimonial-card {
    background: white;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    font-style: italic;
    color: #444;
    position: relative;
}

.testimonial-card::before {
    content: "“";
    font-size: 40px;
    position: absolute;
    top: 10px;
    left: 15px;
    color: #2f81d7;
}

/* =========================================
   9. CONTACT SECTION
   ========================================= */
.contact {
    padding: 60px 0;
    background: linear-gradient(to right, #f5f7fa, #eef2f7);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

.contact-info h2 {
    font-size: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

.contact-form button {
    width: 100%;
}

#form-status {
    margin-top: 10px;
    font-size: 14px;
}

/* =========================================
   10. CTA SECTION
   ========================================= */
.cta {
    text-align: center;
    background: linear-gradient(135deg, #2f81d7, #4ea3ff);
    color: white;
    padding: 80px 20px;
}

.cta h2 {
    margin-bottom: 20px;
}
.cta-button {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
}

.cta-button:hover {
    background: rgba(255,255,255,0.25);
}

/* =========================================
   11. FOOTER
   ========================================= */
.footer {
    text-align: center;
    padding: 20px;
}

/* =========================================
   12. RESPONSIVE (MOBILE)
   ========================================= */
@media (max-width: 768px) {
    .hero-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 36px;
    }

    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

/* MOBILE NAV */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1100;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
	
}

/*  ANIMATION (☰ → ✖) */
.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

@media (max-width: 768px) {
	
	
	.hero {
        padding-top: 20px;   /* 🔑 reduce top gap */
    }

    /* SHOW hamburger */
    .nav-toggle {
        display: flex;
    }

    /* HEADER layout */
    .header-inner {
        flex-wrap: wrap;
        position: relative;
    }

    /* FORCE RESET nav (kills all previous conflicts) */
    .nav {
        all: unset;                     /* 🔑 nuclear reset */
        display: none;
        width: 100%;
        background: white;
        flex-direction: column;
        border-top: 1px solid #eee;
    }
	
	.nav a {
    font-weight: 500;
    font-size: 15px;
	}

	.nav a.active {
		color: #2f81d7;
		font-weight: 600;
	}

    /* SHOW menu */
    .nav.active {
        display: flex;
    }

    /* LIST */
    .nav-list {
        display: flex;
        flex-direction: column;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-list li {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list a {
        display: block;
        padding: 15px 20px;
        font-size: 16px;
        text-decoration: none;
        color: #333;
    }
	.nav a:active {
    color: #2f81d7;
    background: #eef4ff;
	}

    .nav-list a:hover {
        background: #f5f7fa;
    }
}

/* =========================================
   FOOTER (PRO VERSION)
   ========================================= */

.footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 50px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
	align-items: start;
}

.footer h3 {
    font-size: 18px;
    font-weight: 600;
}

.footer h4 {
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.footer p {
    font-size: 14px;
    line-height: 1.6;
    color: #b6c2d1;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer a {
    color: #4ea3ff;
    text-decoration: none;
    transition: 0.2s ease;
}

.footer a:hover {
    color: #2f81d7;
	transform: translateY(-1px);
}

.footer-bottom {
    margin-top: 40px;
    text-align: center;
    border-top: 1px solid #1e293b;
    padding-top: 15px;
    font-size: 13px;
    color: #94a3b8;
}

/* MOBILE */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}