/* ============================================
   SMS SAGA — Global Styles
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --orange:     #D4860B;
    --orange-lt:  #ffa40e;
    --navy:       #1B2B5E;
    --navy-deep:  #0F1E47;
    --navy-mid:   #1E3A6E;
    --white:      #ffffff;
    --off-white:  #F9F4EC;
    --text-body:  #374151;
    --text-muted: #6B7280;
    --card-bg:    #ffffff;
    --border:     #E5E7EB;
    --radius-sm:  8px;
    --radius-md:  12px;
    --radius-lg:  16px;
    --shadow-sm:  0 1px 4px rgba(0,0,0,.08);
    --shadow-md:  0 4px 20px rgba(0,0,0,.10);
    --shadow-lg:  0 8px 40px rgba(0,0,0,.15);
    --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: var(--text-body);
    background: #fff;
    line-height: 1.6;
}

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

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(255, 244, 228, 0.9) 30%, rgba(188, 97, 0, 0.9) 0%, rgba(255, 107, 53, 0.9) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.25); }

.nav-inner {
    display: flex;
    align-items: center;
    gap: 32px;
    height: 68px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}
.logo-icon {
    width: 38px;
    height: 38px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange-lt);
    font-size: 18px;
}
.logo-icon-sm { width: 32px; height: 32px; font-size: 15px; }
.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
}
.logo-sms { color: white; }

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    margin-left: auto;
}
.nav-links a {
    color: var(--white);
    font-size: 15px;
    font-weight: 500;
    transition: opacity var(--transition);
}
.nav-links a:hover { opacity: .75; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-login {
    background: var(--navy);
    color: var(--white);
    white-space: nowrap;
    margin-left: 16px;
}
.btn-login:hover { background: var(--navy-deep); }

.hamburger {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    margin-left: auto;
}

/* Mobile menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 12px 24px 16px;
    background: var(--orange);
    border-top: 1px solid rgba(255,255,255,.2);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 8px 4px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 60%, #24417A 100%);
    min-height: calc(100vh - 68px);
    position: relative;
    overflow: hidden;
    padding-bottom: 120px;
}

/* Grid overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 80px;
    padding-bottom: 60px;
    position: relative;
    z-index: 2;
}

/* Hero text */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 24px;
}
.badge-dot {
    width: 8px; height: 8px;
    background: var(--orange-lt);
    border-radius: 50%;
}

.hero-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}
.hero-highlight { color: var(--orange-lt); }

.hero-desc {
    color: rgba(255,255,255,.75);
    font-size: 16px;
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 14px 28px;
    font-size: 16px;
    border-radius: var(--radius-sm);
}
.btn-primary:hover { background: #b8730a; transform: translateY(-1px); }

.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,.4);
    padding: 12px 28px;
    font-size: 16px;
    border-radius: var(--radius-sm);
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* Hero visual / dashboard */
.hero-visual { position: relative; }

.hero-dashboard-card {
    background: var(--navy-deep);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.dashboard-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,.08);
}
.dashboard-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--orange-lt);
    font-weight: 700;
    font-size: 14px;
}
.dashboard-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-left: auto;
}
.dash-label {
    font-size: 11px;
    color: rgba(255,255,255,.6);
}
.dash-label strong { color: #fff; }

.dashboard-stats {
    display: flex;
    gap: 24px;
    margin-bottom: 16px;
}
.dash-stat-label { font-size: 11px; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.dash-stat-value { font-size: 18px; font-weight: 700; }
.orange { color: var(--orange-lt); }

/* Mini bar chart */
.dashboard-chart { padding-top: 8px; }
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
}
.bar-group { display: flex; align-items: flex-end; gap: 2px; }
.bar {
    width: 10px;
    border-radius: 3px 3px 0 0;
    min-height: 4px;
}
.bar-blue  { background: #3B82F6; }
.bar-orange{ background: var(--orange-lt); }

/* Floating badges */
.floating-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background: var(--navy-deep);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    box-shadow: var(--shadow-md);
    z-index: 3;
}
.floating-badge i { color: var(--orange-lt); font-size: 20px; }
.floating-badge strong { display: block; font-size: 18px; font-weight: 700; }
.floating-badge span { font-size: 11px; color: rgba(255,255,255,.6); }

/* Delivery Rate float - left side */
.delivery-float-badge {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    border-radius: var(--radius-md);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-lg);
    z-index: 5;
}
.delivery-icon {
    width: 36px; height: 36px;
    background: #FEF3C7;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
}
.delivery-float-badge strong { display: block; font-size: 18px; font-weight: 700; color: #111; }
.delivery-float-badge span   { font-size: 12px; color: var(--text-muted); }

/* Stats bar */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0; right: 0;
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(8px);
    border-top: 1px solid rgba(255,255,255,.1);
    z-index: 10;
}
.stats-inner {
    display: flex;
    justify-content: space-around;
    padding: 20px 24px;
}
.stat-item { text-align: center; }
.stat-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: var(--orange-lt);
    line-height: 1;
    margin-bottom: 4px;
}
.stat-label { font-size: 13px; color: rgba(255,255,255,.65); }

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #FEF3C7;
    color: var(--orange);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 16px;
    max-width: 680px;
    margin: 0 auto 48px;
    line-height: 1.7;
    text-align: center;
}

/* ============================================
   ABOUT
   ============================================ */
.about-section {
    background: var(--off-white);
    padding: 80px 0;
    text-align: center;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.about-feature-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 32px 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.about-feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.feature-icon {
    width: 52px; height: 52px;
    background: #FEF3C7;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--orange);
}

.about-feature-card span {
    font-size: 15px;
    font-weight: 600;
    color: var(--orange);
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    text-align: left;
    transition: box-shadow var(--transition), transform var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

.benefit-icon {
    width: 52px; height: 52px;
    background: #FEF3C7;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--orange);
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-section {
    padding: 80px 0;
    background: var(--off-white);
    text-align: center;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industry-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 28px 22px;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--transition), transform var(--transition);
}
.industry-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.industry-icon {
    width: 44px; height: 44px;
    background: #EEF2FF;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy-mid);
    margin-bottom: 14px;
}

.industry-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}

.industry-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-section {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    text-align: left;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }

.product-card-header {
    padding: 28px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.product-dark   .product-card-header {    background: linear-gradient(135deg, var(--navy-mid) 60%, var(--navy-deep) 0%, #24417A 100%);}
.product-orange .product-card-header { background: linear-gradient(135deg, var(--orange-lt) 60%, var(--orange) 0%, #FF6B35 100%); }
.product-blue   .product-card-header {  background: linear-gradient(135deg, var(--navy-mid) 60%, var(--navy-deep) 0%, #24417A 100%);}

.product-card-icon {
    width: 150px; height: 44px;
    /* background: rgba(255,255,255,.15); */
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
}

.product-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.product-card-body {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.product-card-body p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.65;
    flex: 1;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--navy);
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    transition: opacity var(--transition);
}
.product-link:hover { opacity: .7; }

/* ============================================
   CTA
   ============================================ */
.cta-section {
    background: var(--orange);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content:'';
    position:absolute;
    width:400px; height:400px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
    top:-100px; left:-100px;
    pointer-events:none;
}
.cta-section::after {
    content:'';
    position:absolute;
    width:300px; height:300px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
    bottom:-80px; right:-60px;
    pointer-events:none;
}

.cta-inner { position: relative; z-index: 2; }

.cta-section h2 {
    font-size: clamp(26px, 3.5vw, 42px);
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.cta-section p {
    font-size: 18px;
    color: rgba(255,255,255,.8);
    margin-bottom: 36px;
}

.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn-dark-cta {
    background: var(--navy);
    color: #fff;
    padding: 14px 32px;
    font-size: 16px;
    border-radius: var(--radius-sm);
}
.btn-dark-cta:hover { background: var(--navy-deep); transform: translateY(-1px); }

.btn-outline-cta {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,.5);
    padding: 12px 32px;
    font-size: 16px;
    border-radius: var(--radius-sm);
}
.btn-outline-cta:hover { border-color: #fff; background: rgba(255,255,255,.1); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--navy-deep);
    padding-top: 64px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-tagline {
    color: rgba(255,255,255,.6);
    font-size: 14px;
    line-height: 1.65;
    margin-top: 16px;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.social-links a {
    width: 34px; height: 34px;
    background: rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.7);
    font-size: 14px;
    transition: background var(--transition), color var(--transition);
}
.social-links a:hover { background: var(--orange); color: #fff; }

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: var(--orange-lt);
    margin-bottom: 20px;
}

.footer-inner .footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.footer-col ul li a {
    color: rgba(255,255,255,.65);
    font-size: 14px;
    transition: color var(--transition);
}
.footer-col ul li a:hover { color: #fff; }

.contact-list { list-style: none; }
.contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,.65);
    font-size: 14px;
    margin-bottom: 10px;
}
.contact-list li i { color: var(--orange-lt); margin-top: 2px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom-inner span {
    color: rgba(255,255,255,.45);
    font-size: 13px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .about-features  { grid-template-columns: repeat(2, 1fr); }
    .footer-inner    { grid-template-columns: 1fr 1fr; }
    .footer-brand    { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-links, .btn-login { display: none; }
    .hamburger { display: block; }

    .hero-inner {
        grid-template-columns: 1fr;
        padding-top: 48px;
        text-align: center;
    }
    .hero-badge { margin: 0 auto 20px; }
    .hero-desc  { margin: 0 auto 28px; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }
    .delivery-float-badge { display: none; }

    .stats-inner    { gap: 12px; }
    .stat-number    { font-size: 20px; }

    .benefits-grid  { grid-template-columns: 1fr; }
    .products-grid  { grid-template-columns: 1fr; }
    .footer-inner   { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand   { grid-column: auto; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .industries-grid { grid-template-columns: 1fr; }
    .about-features  { grid-template-columns: 1fr 1fr; }
    .stats-inner     { flex-wrap: wrap; gap: 16px; justify-content: center; }
    .stat-item       { width: calc(50% - 8px); }
}

/* ============================================
   CONTACT MODAL
   ============================================ */
.contact-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.contact-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.contact-modal.active .modal-content {
    transform: scale(1);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid #e5e7eb;
}

.modal-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin: 0;
}

.modal-close {
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    font-size: 20px;
    color: #6b7280;
}

.modal-close:hover {
    background: #f3f4f6;
    color: var(--navy);
}

.modal-body {
    padding: 28px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

.form-group .required {
    color: #ef4444;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.btn-outline-modal {
    flex: 1;
    padding: 12px 24px;
    background: transparent;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-outline-modal:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
    color: var(--navy);
}

.btn-primary-modal {
    flex: 1;
    padding: 12px 24px;
    background: var(--orange);
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-primary-modal:hover {
    background: #e55a2b;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

@media (max-width: 640px) {
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .form-actions {
        flex-direction: column;
    }
}
