/* ========================================== */
/* ===== RESET & BASE ===== */
/* ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f0f7ff;
    color: #1a2a4a;
    overflow-x: hidden;
    min-height: 100vh;
    cursor: default;
}

/* ========================================== */
/* ===== ANIMATED BACKGROUND ===== */
/* ========================================== */
.bg-animated {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
}

.gradient-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(-45deg, #f0f7ff, #ffffff, #dbeafe, #f0f7ff);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.mesh {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    animation: meshFloat 20s ease-in-out infinite alternate;
}

.mesh1 { width: 600px; height: 600px; background: #007bff; top: -200px; left: -200px; }
.mesh2 { width: 500px; height: 500px; background: #6c63ff; bottom: -150px; right: -150px; animation-delay: 5s; opacity: 0.08; }
.mesh3 { width: 400px; height: 400px; background: #3399ff; top: 50%; left: 50%; transform: translate(-50%, -50%); animation-delay: 10s; opacity: 0.06; }

@keyframes meshFloat {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(80px, -60px) scale(1.1); }
    66% { transform: translate(-60px, 80px) scale(0.9); }
    100% { transform: translate(50px, 40px) scale(1.05); }
}

/* ========================================== */
/* ===== NAVIGATION ===== */
/* ========================================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 123, 255, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 30px rgba(0, 123, 255, 0.04);
}

.logo {
    font-size: 28px;
    font-weight: 800;
    color: #1a2a4a;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    color: #007bff;
    font-size: 18px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: #4a5a7a;
    font-weight: 500;
    transition: 0.3s;
    font-size: 14px;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: 0.3s;
}

nav ul li a:hover { color: #007bff; }
nav ul li a:hover::after { width: 100%; }

.nav-cta {
    padding: 10px 28px;
    background: linear-gradient(135deg, #007bff, #6c63ff);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.2);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.3);
}

/* ========================================== */
/* ===== HERO ===== */
/* ========================================== */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 85vh;
    padding: 40px 60px;
    position: relative;
    z-index: 1;
    gap: 40px;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0, 123, 255, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.12);
    border-radius: 50px;
    font-size: 13px;
    color: #007bff;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: #1a2a4a;
}

.hero-content h1 span {
    background: linear-gradient(135deg, #007bff, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 17px;
    color: #4a5a7a;
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-stats {
    display: flex;
    gap: 35px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: #1a2a4a;
}

.stat-label {
    font-size: 13px;
    color: #6a7a9a;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #007bff, #6c63ff);
    color: white;
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 123, 255, 0.35);
}

.btn-outline {
    background: transparent;
    color: #1a2a4a;
    border: 2px solid rgba(0, 123, 255, 0.2);
}

.btn-outline:hover {
    border-color: #007bff;
    background: rgba(0, 123, 255, 0.04);
    transform: translateY(-3px);
}

/* ========================================== */
/* ===== ACTION BOX - SEND EMAIL (VyapariWorks Style) ===== */
/* ========================================== */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.action-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 35px 30px;
    max-width: 380px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.08);
    border: 1px solid rgba(0, 123, 255, 0.06);
    transition: 0.3s;
}

.action-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 80px rgba(0, 123, 255, 0.12);
}

.action-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.action-box-icon {
    font-size: 28px;
    background: rgba(0, 123, 255, 0.08);
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.action-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a2a4a;
}

.action-box > p {
    color: #6a7a9a;
    font-size: 14px;
    margin-bottom: 20px;
    padding-left: 4px;
}

.action-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.form-field label {
    font-size: 13px;
    font-weight: 600;
    color: #1a2a4a;
}

.form-field input {
    padding: 12px 16px;
    border: 2px solid #e8edf5;
    border-radius: 12px;
    font-size: 14px;
    transition: 0.3s;
    background: #f8faff;
    font-family: 'Poppins', sans-serif;
}

.form-field input:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.06);
}

.btn-action {
    padding: 14px;
    background: linear-gradient(135deg, #007bff, #6c63ff);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    margin-top: 4px;
}

.btn-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.3);
}

.secure-text {
    font-size: 12px;
    color: #8a9aaa;
    margin-top: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.secure-text i {
    color: #007bff;
}

/* ========================================== */
/* ===== SERVICES - NEW ICONS ===== */
/* ========================================== */
.services {
    padding: 80px 60px;
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    padding: 4px 16px;
    background: rgba(0, 123, 255, 0.08);
    border-radius: 50px;
    font-size: 13px;
    color: #007bff;
    font-weight: 500;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #1a2a4a;
}

.section-header h2 span {
    background: linear-gradient(135deg, #007bff, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-header p {
    color: #6a7a9a;
    font-size: 17px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 24px;
    border: 1px solid rgba(0, 123, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: left;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.04);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #6c63ff);
    opacity: 0;
    transition: 0.4s;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 123, 255, 0.15);
    box-shadow: 0 20px 60px rgba(0, 123, 255, 0.08);
}

.service-icon {
    font-size: 36px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 123, 255, 0.06);
    border-radius: 16px;
    color: #007bff;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #1a2a4a;
}

.service-card p {
    color: #5a6a8a;
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-link {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.service-link:hover {
    color: #6c63ff;
    margin-left: 6px;
}

/* ========================================== */
/* ===== PORTFOLIO ===== */
/* ========================================== */
.portfolio {
    padding: 80px 60px;
    position: relative;
    z-index: 1;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

.portfolio-item {
    height: 250px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.06), rgba(108, 99, 255, 0.06));
    border: 1px solid rgba(0, 123, 255, 0.06);
    position: relative;
    overflow: hidden;
    transition: 0.4s;
    cursor: pointer;
    background-color: #ffffff;
}

.portfolio-item:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 123, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 123, 255, 0.06);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.95));
}

.portfolio-overlay h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a2a4a;
}

.portfolio-overlay p {
    font-size: 13px;
    color: #5a6a8a;
}

/* ========================================== */
/* ===== ABOUT ===== */
/* ========================================== */
.about {
    padding: 80px 60px;
    position: relative;
    z-index: 1;
    background: #ffffff;
    border-radius: 40px;
    margin: 0 60px 40px;
    box-shadow: 0 4px 30px rgba(0, 123, 255, 0.04);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a2a4a;
}

.about-text h2 span {
    background: linear-gradient(135deg, #007bff, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text p {
    color: #5a6a8a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 20px;
}

.about-features li {
    padding: 6px 0;
    color: #1a2a4a;
    font-size: 14px;
}

.about-features li::before {
    content: '✓ ';
    color: #007bff;
    font-weight: 700;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: #f0f7ff;
    padding: 24px 16px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(0, 123, 255, 0.06);
}

.stat-card .stat-number {
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #007bff, #6c63ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.stat-card span:last-child {
    font-size: 13px;
    color: #6a7a9a;
}

/* ========================================== */
/* ===== CONTACT ===== */
/* ========================================== */
.contact {
    padding: 80px 60px;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #1a2a4a;
    font-size: 16px;
    background: #ffffff;
    padding: 16px 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 123, 255, 0.04);
    border: 1px solid rgba(0, 123, 255, 0.06);
}

.contact-item i {
    font-size: 24px;
    color: #007bff;
}

/* ========================================== */
/* ===== FOOTER ===== */
/* ========================================== */
footer {
    padding: 40px 60px 20px;
    border-top: 1px solid rgba(0, 123, 255, 0.06);
    position: relative;
    z-index: 1;
    background: #ffffff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-brand h3 {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #1a2a4a;
}

.footer-brand p {
    color: #6a7a9a;
    font-size: 14px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-contact span {
    color: #4a5a7a;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact span i {
    color: #007bff;
    width: 18px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #5a6a8a;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #007bff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 123, 255, 0.06);
    color: #8a9aaa;
    font-size: 13px;
}

/* ========================================== */
/* ===== BOOKING POPUP ===== */
/* ========================================== */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.popup-overlay.active {
    display: flex;
}

.popup-content {
    background: #ffffff;
    max-width: 520px;
    width: 92%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 40px 35px;
    border-radius: 24px;
    position: relative;
    border: 1px solid rgba(0, 123, 255, 0.06);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    animation: popupSlide 0.3s ease;
}

@keyframes popupSlide {
    from { transform: translateY(30px) scale(0.95); opacity: 0; }
    to { transform: translateY(0) scale(1); opacity: 1; }
}

.popup-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 28px;
    background: none;
    border: none;
    color: #8a9aaa;
    cursor: pointer;
    transition: 0.3s;
}

.popup-close:hover {
    color: #1a2a4a;
    transform: rotate(90deg);
}

.popup-header h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1a2a4a;
}

.popup-header p {
    color: #6a7a9a;
    font-size: 14px;
    margin-bottom: 25px;
}

.popup-content .form-group {
    margin-bottom: 16px;
}

.popup-content .form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #1a2a4a;
    font-size: 13px;
}

.popup-content .form-group input,
.popup-content .form-group select {
    width: 100%;
    padding: 12px 16px;
    background: #f0f7ff;
    border: 1px solid rgba(0, 123, 255, 0.08);
    border-radius: 12px;
    font-size: 15px;
    color: #1a2a4a;
    transition: 0.3s;
}

.popup-content .form-group input:focus,
.popup-content .form-group select:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 4px rgba(0, 123, 255, 0.06);
}

.popup-content .form-group input::placeholder {
    color: #8a9aaa;
}

.popup-content .form-group select {
    background: #f0f7ff;
    color: #1a2a4a;
}

.popup-content .form-group select option {
    background: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}

/* ========================================== */
/* ===== FLOATING ELEMENTS ===== */
/* ========================================== */
.floating-img {
    position: fixed;
    right: 30px;
    bottom: 280px;
    z-index: 999;
    cursor: pointer;
}

.floating-img img {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    box-shadow: 0 8px 30px rgba(0, 123, 255, 0.2);
    border: 3px solid #ffffff;
    object-fit: cover;
    transition: 0.3s;
    position: relative;
    z-index: 2;
}

.floating-img img:hover {
    transform: scale(1.08);
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid #007bff;
    animation: pulseRing 2s ease-out infinite;
    z-index: 1;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(0, 123, 255, 0.3);
    animation: pulseRing 2s ease-out infinite 0.5s;
}

@keyframes pulseRing {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

.floating-icons {
    position: fixed;
    right: 25px;
    bottom: 120px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.floating-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: white;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.floating-icon:hover {
    transform: scale(1.12) translateX(-4px);
}

.floating-icon::after {
    content: attr(title);
    position: absolute;
    right: 68px;
    background: #1a2a4a;
    color: white;
    padding: 5px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.floating-icon:hover::after {
    opacity: 1;
}

.call-icon { background: linear-gradient(135deg, #00b894, #00a86b); }
.whatsapp-icon { background: linear-gradient(135deg, #25D366, #128C7E); }
.instagram-icon { background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.booking-icon { background: linear-gradient(135deg, #007bff, #6c63ff); }

/* ========================================== */
/* ===== RESPONSIVE ===== */
/* ========================================== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 30px;
    }
    .hero-content { max-width: 100%; }
    .hero-content p { margin: 0 auto 30px; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .action-box { max-width: 400px; margin: 0 auto; }
    .about-content { grid-template-columns: 1fr; text-align: center; }
    .about-features { justify-items: center; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .about { margin: 0 20px 30px; }
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 15px 20px;
        gap: 12px;
    }
    nav ul { gap: 15px; flex-wrap: wrap; justify-content: center; }
    nav ul li a { font-size: 13px; }
    .nav-cta { padding: 8px 20px; font-size: 13px; }
    .hero-content h1 { font-size: 32px; }
    .section-header h2 { font-size: 28px; }
    .services, .portfolio, .about, .contact { padding: 50px 20px; }
    .service-grid { grid-template-columns: 1fr 1fr; }
    .portfolio-grid { grid-template-columns: 1fr 1fr; }
    .about-stats { grid-template-columns: 1fr 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .footer-content { flex-direction: column; text-align: center; }
    .footer-contact { align-items: center; }
    .floating-img { right: 15px; bottom: 240px; }
    .floating-img img { width: 60px; height: 60px; }
    .floating-icons { right: 12px; bottom: 100px; gap: 12px; }
    .floating-icon { width: 48px; height: 48px; font-size: 18px; }
    .floating-icon::after { display: none; }
    .popup-content { padding: 30px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .about { margin: 0 10px 20px; padding: 30px 16px; border-radius: 24px; }
    .contact-info { gap: 16px; }
    .contact-item { padding: 12px 20px; font-size: 14px; width: 100%; justify-content: center; }
    .hero-stats { gap: 20px; }
    .stat-number { font-size: 20px; }
}

@media (max-width: 480px) {
    .service-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .about-stats { grid-template-columns: 1fr; }
    .action-box { padding: 24px 18px; }
    .action-box-header { flex-direction: column; text-align: center; }
    .hero-content h1 { font-size: 26px; }
}