/* ==========================================================================
   DIGITAL DESIGN LEADERSHIP GROUP (DDL GROUP)
   ULTRA-PROFESSIONAL LIGHT MODE DESIGN SYSTEM
   ========================================================================== */

:root {
    /* Brand Color Palette */
    --brand-red: #e11d48;
    --brand-red-hover: #be123c;
    --brand-red-light: #fff1f2;
    --brand-red-dark: #9f1239;
    
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-alt: #f1f5f9;
    --bg-card: #ffffff;

    --border-light: #e2e8f0;
    --border-red: rgba(225, 29, 72, 0.3);

    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-white: #ffffff;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Radii & Shadows */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 20px 35px -10px rgba(0, 0, 0, 0.12);
    --shadow-red: 0 10px 25px rgba(225, 29, 72, 0.3);
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center { text-align: center; }
.text-red { color: var(--brand-red) !important; }
.text-highlight-red { color: var(--brand-red); font-weight: 800; }
.hidden { display: none !important; }

/* Sleek Top Announcement Ribbon */
.top-announcement-bar {
    background: #0f172a;
    color: #e2e8f0;
    font-size: 13px;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-announce-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.announce-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.badge-hot-offer {
    background: #ff0000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.4);
}

.announce-text {
    color: #f1f5f9;
}

.announce-link {
    color: #facc15;
    text-decoration: underline;
    font-weight: 700;
    font-size: 13px;
    transition: color 0.2s ease;
}

.announce-link:hover {
    color: #ffffff;
}

.announce-right {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 13px;
}

.announce-right a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.announce-right a:hover {
    color: #ffffff;
}

/* Header Navbar */
.navbar {
    position: sticky;
    top: 0;
    background: #ffffff;
    height: 80px;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid var(--border-light);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.logo-img-sm {
    height: 38px;
    width: auto;
}

.brand-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: var(--text-primary);
    display: block;
    line-height: 1.2;
}

.brand-title-foot, .brand-title-mobile {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 18px;
    color: #ffffff;
}

.brand-subtitle {
    font-size: 11px;
    color: var(--brand-red);
    font-weight: 600;
    display: block;
}

.desktop-nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
}

.desktop-nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.desktop-nav-links a:hover {
    color: var(--brand-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.btn-highlight-banner {
    background: var(--brand-red);
    color: #ffffff;
    font-weight: 800;
    font-size: 13px;
    padding: 9px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.3);
    transition: all 0.2s ease;
}

.btn-highlight-banner:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
}

.mobile-toggle-btn {
    display: none;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    font-size: 20px;
    color: var(--text-primary);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-toggle-btn:hover {
    background: var(--brand-red);
    color: #ffffff;
    border-color: var(--brand-red);
}

/* Full-Screen Mobile Menu */
.mobile-fullscreen-menu {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(24px);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: visibility 0.35s ease, opacity 0.35s ease, transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-fullscreen-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-close-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s ease;
}

.mobile-close-btn:hover {
    background: var(--brand-red);
    border-color: var(--brand-red);
    transform: rotate(90deg);
}

.mobile-menu-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-offer-card {
    background: linear-gradient(135deg, rgba(225, 29, 72, 0.15), rgba(30, 27, 75, 0.8));
    border: 1px solid rgba(225, 29, 72, 0.4);
    border-radius: var(--radius-lg);
    padding: 24px;
    color: #ffffff;
}

.mobile-offer-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 800;
    margin: 8px 0 4px;
    color: #facc15;
}

.mobile-offer-card p {
    font-size: 13px;
    color: #cbd5e1;
    margin-bottom: 16px;
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.mobile-nav-item i {
    font-size: 18px;
    width: 24px;
}

.mobile-nav-item:hover, .mobile-nav-item:active {
    background: rgba(225, 29, 72, 0.2);
    border-color: var(--brand-red);
    transform: translateX(6px);
}

.mobile-contact-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.btn-outline-light {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-whatsapp-mobile {
    background: #25d366;
    color: #ffffff;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}

.btn-red {
    background: var(--brand-red);
    color: #ffffff;
    box-shadow: var(--shadow-red);
}

.btn-red:hover {
    background: var(--brand-red-hover);
    transform: translateY(-2px);
}

.btn-yellow {
    background: #facc15;
    color: #0f172a;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(250, 204, 21, 0.4);
}

.btn-yellow:hover {
    background: #eab308;
}

.btn-outline-dark {
    background: #ffffff;
    color: var(--text-primary);
    border: 1px solid var(--border-light);
}

.btn-outline-dark:hover {
    border-color: var(--text-primary);
    background: var(--bg-light);
}

.btn-outline-red {
    background: transparent;
    color: var(--brand-red);
    border: 2px solid var(--brand-red);
}

.btn-outline-red:hover {
    background: var(--brand-red);
    color: #ffffff;
}

.btn-card-action {
    background: var(--bg-light);
    color: var(--text-primary);
    border: 1px solid var(--border-light);
    width: 100%;
}

.btn-card-action:hover {
    background: var(--brand-red);
    color: #ffffff;
    border-color: var(--brand-red);
}

.btn-full { width: 100%; }

/* Hero Section */
.hero-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    border-bottom: 1px solid var(--border-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: var(--brand-red-light);
    color: var(--brand-red);
    font-size: 13px;
    font-weight: 700;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 46px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
    flex-wrap: wrap;
}

.trust-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-point {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Red Stat Quad Cards */
.hero-stats-wrapper {
    display: flex;
    justify-content: center;
}

.stats-card-red-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
    max-width: 480px;
}

.stat-red-box {
    background: #ff0000;
    border-radius: 20px;
    padding: 36px 20px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(255, 0, 0, 0.25);
    transition: transform 0.3s ease;
}

.stat-red-box:hover {
    transform: translateY(-5px);
}

.stat-big-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-subtext {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
}

/* Spotlight 1499 Section */
.spotlight-1499-section {
    padding: 60px 0;
    background: #ffffff;
}

.spotlight-card-box {
    background: linear-gradient(135deg, #fff1f2 0%, #ffffff 100%);
    border: 2px solid var(--brand-red);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
    align-items: center;
}

.spotlight-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #ff0000;
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.spotlight-info h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 12px;
}

.spotlight-lead {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.spotlight-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.spot-feat-item {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.spotlight-pricing-side {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.price-box-big {
    margin-bottom: 20px;
}

.price-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--brand-red);
    text-transform: uppercase;
}

.big-price-tag {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--brand-red);
    line-height: 1.1;
    margin: 4px 0;
}

.regular-strike {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Why Choose Us Section */
.why-us-section {
    padding: 100px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.why-us-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.why-title {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.why-lead-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.6;
}

.bullet-list-custom {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.bullet-icon-red {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ff0000;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.bullet-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
}

.red-quad-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.quad-card {
    background: #ff0000;
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(255, 0, 0, 0.25);
}

.quad-number {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

.quad-label {
    font-size: 16px;
    font-weight: 600;
}

/* Services Catalog Section */
.services-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-light);
}

.section-badge-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    color: var(--brand-red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-main-title {
    font-family: var(--font-heading);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 14px;
}

.section-lead-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 620px;
    margin: 0 auto 40px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    color: var(--text-secondary);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.25s ease;
}

.tab-btn:hover, .tab-btn.active {
    background: var(--brand-red);
    color: #ffffff;
    border-color: var(--brand-red);
    box-shadow: 0 4px 12px rgba(225, 29, 72, 0.25);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--border-red);
}

.featured-card {
    border-color: var(--brand-red);
    box-shadow: 0 10px 30px rgba(225, 29, 72, 0.12);
}

.card-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.red-ribbon { background: var(--brand-red-light); color: var(--brand-red); }
.gold-ribbon { background: #fef3c7; color: #d97706; }

.service-icon-box {
    width: 52px;
    height: 52px;
    background: var(--brand-red-light);
    color: var(--brand-red);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.service-name {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.price-display {
    font-size: 24px;
    font-weight: 800;
    color: var(--brand-red);
    margin-bottom: 16px;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.price-display .period { font-size: 13px; color: var(--text-muted); font-weight: 400; }
.strike-price { font-size: 13px; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }

.service-summary {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.check-feature-list {
    list-style: none;
    margin-bottom: 28px;
    margin-top: auto;
}

.check-feature-list li {
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Pricing Tiers Section */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.pricing-tiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.tier-card {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.popular-tier {
    border-color: var(--brand-red);
    box-shadow: var(--shadow-lg);
    transform: scale(1.03);
}

.popular-top-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-red);
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 18px;
    border-radius: var(--radius-full);
}

.tier-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.tier-price {
    font-size: 38px;
    font-weight: 800;
    color: var(--brand-red);
    margin-bottom: 8px;
}

.tier-price span { font-size: 14px; color: var(--text-muted); font-weight: 400; }

.tier-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.tier-features {
    list-style: none;
    margin-bottom: 36px;
}

.tier-features li {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Portfolio Section */
.portfolio-section {
    padding: 100px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.portfolio-card-item {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.portfolio-category-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--brand-red);
    margin-bottom: 12px;
}

.portfolio-card-item h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-card-item p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.portfolio-link-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.portfolio-link-pills a {
    background: #ffffff;
    border: 1px solid var(--border-light);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.portfolio-link-pills a:hover {
    background: var(--brand-red-light);
    border-color: var(--brand-red);
    color: var(--brand-red);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.contact-card-box {
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 56px;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.contact-form-styled {
    margin-top: 36px;
}

.form-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.full-width-field {
    grid-column: span 2;
    margin-top: 8px;
}

.form-field-group label {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.required-star { color: var(--brand-red); }

.field-input-box {
    position: relative;
    display: flex;
    align-items: center;
}

.field-icon {
    position: absolute;
    left: 16px;
    color: var(--text-muted);
    font-size: 16px;
}

.field-input-box input,
.field-input-box select,
.field-input-box textarea {
    width: 100%;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    padding: 14px 16px 14px 48px;
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 15px;
    outline: none;
    transition: all 0.25s ease;
}

.field-input-box textarea {
    padding-top: 14px;
}

.field-input-box input:focus,
.field-input-box select:focus,
.field-input-box textarea:focus {
    border-color: var(--brand-red);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.1);
}

.input-hint-text {
    font-size: 11px;
    color: var(--text-muted);
}

.form-submit-row {
    margin-top: 32px;
}

.form-status-alert {
    margin-top: 24px;
    padding: 16px;
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 600;
    text-align: center;
}

.form-status-alert.success {
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    color: #047857;
}

.form-status-alert.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

/* Google Maps Embed Section */
.google-map-container-box {
    margin-top: 48px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
}

.map-header {
    text-align: center;
    margin-bottom: 24px;
}

.map-header h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 800;
    margin: 6px 0 4px;
}

.map-header p {
    font-size: 14px;
    color: var(--text-secondary);
}

.map-iframe-wrapper {
    width: 100%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-light);
}

.map-iframe-wrapper iframe {
    display: block;
    width: 100%;
}

/* Floating WhatsApp Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: #0f172a;
    color: #ffffff;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.foot-subtitle {
    font-size: 12px;
    color: var(--brand-red);
    font-weight: 700;
    margin: 4px 0 12px;
}

.foot-desc {
    font-size: 14px;
    color: #94a3b8;
    max-width: 440px;
}

.footer-col-contact h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 16px;
}

.footer-col-contact p {
    font-size: 14px;
    color: #cbd5e1;
    margin-bottom: 10px;
}

.footer-col-contact a {
    color: #ffffff;
    text-decoration: none;
}

.footer-bottom-bar {
    padding: 24px 0;
    font-size: 13px;
    color: #64748b;
}

/* Responsive Rules */
@media (max-width: 992px) {
    .hero-grid, .why-us-layout, .spotlight-grid, .footer-grid { grid-template-columns: 1fr; }
    .pricing-tiers-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .popular-tier { transform: none; }
    .desktop-nav-links { display: none; }
    .mobile-toggle-btn { display: flex; }
    .top-announce-flex { justify-content: center; text-align: center; }
    .announce-right { display: none; }
}

@media (max-width: 768px) {
    .hero-title { font-size: 34px; }
    .why-title { font-size: 34px; }
    .section-main-title { font-size: 28px; }
    .form-grid-layout, .spotlight-features-grid { grid-template-columns: 1fr; }
    .full-width-field { grid-column: span 1; }
    .contact-card-box, .spotlight-card-box, .google-map-container-box { padding: 28px 18px; }
}
