/* ===================================
   TRENDING DIGITAL SERVICES
   Gold + White + Black Design
   =================================== */

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

:root {
    --gold: #FFD700;
    --gold-dark: #B8860B;
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --black: #1a1a1a;
    --black-light: #2d2d2d;
    --white: #ffffff;
    --cream: #FFF9E5;
    --gray-light: #FAFAFA;
    --gray: #666;
    --border: #e0e0e0;
}

body {
    font-family: 'Arial', sans-serif;
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center { text-align: center; }
.text-gold { color: var(--gold-dark); }

/* ===== NAVIGATION ===== */
.navbar {
    background: var(--black);
    border-bottom: 2px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 1.1rem;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--gold-gradient);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--black);
    font-size: 1.3rem;
    box-shadow: 0 2px 12px rgba(255,215,0,0.4);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--gold);
}

.btn-cta {
    background: var(--gold-gradient);
    color: var(--black);
    padding: 10px 28px;
    border-radius: 24px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 2px 12px rgba(255,215,0,0.3);
    transition: all 0.3s;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255,215,0,0.5);
}

/* ===== HERO SPLIT SECTION ===== */
.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
}

.hero-left {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(255,215,0,0.3);
    width: fit-content;
}

.hero-left h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--black);
}

.hero-left p {
    font-size: 1.05rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.btn-primary {
    background: var(--gold-gradient);
    color: var(--black);
    padding: 14px 32px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 16px rgba(255,215,0,0.3);
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255,215,0,0.5);
}

.btn-secondary {
    border: 2px solid var(--black);
    color: var(--black);
    padding: 14px 32px;
    border-radius: 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s;
    display: inline-block;
    background: transparent;
}

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
}

.stats-inline {
    display: flex;
    gap: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--black);
}

.stat-number.gold {
    color: var(--gold-dark);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.hero-right {
    padding: 4rem 3rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    position: relative;
}

.hero-right h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.feature-card {
    background: rgba(255,215,0,0.1);
    padding: 1.25rem;
    border-radius: 12px;
    border-left: 3px solid var(--gold);
    margin-bottom: 1rem;
    backdrop-filter: blur(10px);
}

.feature-title {
    color: var(--gold);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* ===== SERVICES PREVIEW ===== */
.services-preview {
    padding: 4rem 0;
    background: var(--gray-light);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
}

.services-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-card-white,
.service-card-black {
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
}

.service-card-white {
    background: var(--white);
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.service-card-white:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.service-card-black {
    background: var(--black);
    border: 2px solid var(--gold);
    box-shadow: 0 4px 16px rgba(255,215,0,0.2);
}

.service-card-black:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(255,215,0,0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 8px rgba(255,215,0,0.3));
}

.service-card-white h4 {
    color: var(--black);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card-black h4 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.service-card-white p {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-card-black p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-link {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.service-link:hover {
    color: var(--gold);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.about-content p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background: var(--black);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.btn-cta-large {
    background: var(--gold-gradient);
    color: var(--black);
    padding: 16px 48px;
    border-radius: 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    box-shadow: 0 4px 16px rgba(255,215,0,0.4);
    transition: all 0.3s;
    display: inline-block;
}

.btn-cta-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(255,215,0,0.6);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    padding: 5rem 0 3rem;
    text-align: center;
    border-bottom: 2px solid var(--gold);
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
}

/* ===== SERVICES DETAIL ===== */
.services-detail {
    padding: 4rem 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.service-detail-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail-card img {
    width: 100%;
    border-radius: 12px;
}

.service-detail-card.reverse img {
    order: 2;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--black);
}

.service-detail-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* ===== PACKAGES ===== */
.packages-section {
    padding: 4rem 0;
}

.instruction-box {
    background: var(--cream);
    border: 2px solid var(--gold);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 3rem;
}

.instruction-box h3 {
    color: var(--black);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.instruction-box p {
    color: var(--gray);
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.packages-image {
    text-align: center;
    margin-bottom: 3rem;
}

.packages-image img {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.cta-below-packages {
    text-align: center;
    padding: 2rem;
    background: var(--gray-light);
    border-radius: 12px;
}

.cta-below-packages h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-below-packages p {
    color: var(--gray);
    margin-bottom: 2rem;
}

/* ===== BLOG ===== */
.blog-section {
    padding: 4rem 0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    transition: all 0.3s;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.blog-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-content h2 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--black);
    line-height: 1.4;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 1rem;
}

.blog-excerpt {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.btn-read-more {
    color: var(--gold-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.btn-read-more:hover {
    color: var(--gold);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 4rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}

.stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--gray);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    color: var(--black);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ===== CONTACT ===== */
.contact-section {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-item p,
.contact-item a {
    color: var(--gray);
    text-decoration: none;
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--gold-dark);
}

.contact-form-container {
    background: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
}

.contact-form-container h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: Arial, sans-serif;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-full {
    width: 100%;
}

.map-section iframe {
    display: block;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    font-size: 0.9rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.contact-info li {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero-split { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .services-grid-3 { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .service-detail-card,
    .service-detail-card.reverse { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .stats-inline { gap: 1.5rem; }
}
