:root {
  --bg: #fdfdfd;
  --bg-soft: #f4f7f9;
  --bg-deep: #0f172a;
  --panel: rgba(255, 255, 255, 0.7);
  --panel-glass: rgba(255, 255, 255, 0.4);
  --ink: #1e293b;
  --ink-soft: #64748b;
  --line: rgba(30, 41, 59, 0.1);
  --accent: #ea7a1f;
  --accent-deep: #c2410c;
  --accent-soft: #fed7aa;
  --shadow-sm: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 8px;
  --container: min(1200px, calc(100vw - 40px));
  --display-font: 'Outfit', sans-serif;
  --body-font: 'Inter', sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: 0.3s;
}

.header-inner {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 12px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-lg);
}

.brand-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-inline-start: 4px;
}

.brand-badge::before {
  content: "";
  width: 4px;
  height: 24px;
  background: var(--accent);
  border-radius: 4px;
}

.brand-mark {
  display: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: var(--display-font);
  font-size: 1.2rem;
  letter-spacing: 1px;
}

.brand-text small {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--ink-soft);
  letter-spacing: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: white !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600 !important;
  box-shadow: 0 10px 20px rgba(234, 122, 31, 0.3);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 25px rgba(234, 122, 31, 0.4);
}

.menu-toggle {
    display: none;
}

/* Hero Section */
.hero-premium {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
  from { transform: scale(1.1); }
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(70deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-text-wrap {
  max-width: 800px;
}

.hero-eyebrow {
  font-family: var(--display-font);
  text-transform: uppercase;
  letter-spacing: 4px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--accent);
}

.hero-premium h1 {
  font-family: var(--display-font);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 24px;
}

.hero-subheading {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 600px;
}

.hero-actions {
  display: flex;
  gap: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.button-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 20px 40px rgba(234, 122, 31, 0.4);
}

.button-primary:hover {
  transform: translateY(-5px);
  background: var(--accent-deep);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.button-whatsapp {
    background: #25D366;
    color: white;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.3);
}

.button-whatsapp:hover {
    transform: translateY(-5px);
    background: #128C7E;
}

/* About Section */
.about-section {
  background: var(--bg-soft);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.about-copy h2 {
  font-family: var(--display-font);
  font-size: 2.8rem;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-copy p {
  color: var(--ink-soft);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.safety-note {
  font-style: italic;
  font-weight: 500;
  border-left: 4px solid var(--accent);
  padding-left: 20px;
  color: var(--ink-soft);
}

.about-visual {
  position: relative;
}

.about-img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.site-header.scrolled {
  top: 10px;
}

.site-header.scrolled .header-inner {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.trust-badge {
  position: absolute;
  top: -30px;
  right: -30px;
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 5;
}

.badge-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.badge-text {
  font-weight: 700;
  font-size: 0.9rem;
  text-align: center;
}

/* Services Section */
.section-heading {
  margin-bottom: 60px;
}

.section-heading h2 {
  font-family: var(--display-font);
  font-size: 2.8rem;
}

.featured-service {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  background: white;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
}

.featured-img {
  overflow: hidden;
}

.featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-service:hover .featured-img img {
  transform: scale(1.08);
}

.featured-content {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.service-tag {
  background: var(--accent-soft);
  color: var(--accent-deep);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 700;
  align-self: flex-start;
  margin-bottom: 20px;
}

.featured-content h3 {
  font-family: var(--display-font);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.featured-content p {
  color: var(--ink-soft);
  margin-bottom: 30px;
}

.feature-list {
  list-style: none;
  margin-bottom: 40px;
}

.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--ink-soft);
}

.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card-premium {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: 0.4s;
  border: 1px solid var(--line);
}

.service-card-premium:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(234, 122, 31, 0.3);
}

.card-img {
  height: 250px;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card-premium:hover .card-img img {
  transform: scale(1.08);
}

.card-content {
  padding: 40px;
}

.card-content h3 {
  font-family: var(--display-font);
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.card-content p {
  color: var(--ink-soft);
}

/* Why Section */
.why-section {
  background: var(--bg-deep);
  color: white;
}

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

.why-item {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.4s;
}

.why-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.why-item h3 {
  font-family: var(--display-font);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.why-item p {
  color: #94a3b8;
}

/* Portfolio Section */
.portfolio-section {
  background: var(--bg-soft);
}

.sub-eyebrow {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 30px;
    text-align: center;
}

.clients-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.client-name {
    background: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 700;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
    color: var(--ink-soft);
}

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

.gallery-item {
    height: 300px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Consultation & Contact */
.consultation {
    background: white;
}

.consultation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-stack h2 {
    font-family: var(--display-font);
    font-size: 2.8rem;
    margin-bottom: 24px;
}

.contact-stack p {
    color: var(--ink-soft);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.consultation-actions {
    display: flex;
    gap: 20px;
}

.consultation-card {
    background: var(--bg-soft);
    padding: 60px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.consultation-card h3 {
    font-family: var(--display-font);
    font-size: 1.8rem;
    margin-bottom: 32px;
}

.footer-side {
    text-align: right;
}

.footer-legal {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
    margin-bottom: 8px;
    font-size: 0.8rem;
    color: #94a3b8;
    font-weight: 600;
    letter-spacing: 0.5px;
}

[dir="rtl"] .footer-side {
    text-align: left;
}

[dir="rtl"] .footer-legal {
    justify-content: flex-start;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-entry span {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ink-soft);
    margin-bottom: 4px;
}

.contact-entry a, .contact-entry p {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Map */
.map-section {
    padding: 0 0 100px;
}

.map-frame {
    width: 100%;
    height: 450px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.site-footer {
    background: var(--bg-deep);
    color: white;
    padding: 80px 0 40px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-brand img {
    width: 60px;
}

.footer-brand strong {
    font-family: var(--display-font);
    font-size: 1.5rem;
}

.footer-brand p {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-copy {
    color: #64748b;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .about-grid, .featured-service, .consultation-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-preview {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .site-nav {
        display: none;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .hero-premium h1 {
        font-size: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions, .consultation-actions {
        flex-direction: column;
    }
    
    .trust-badge {
        right: 0;
    }
}

/* --- New Content Styles --- */

.expertise-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 30px;
}

.expertise-block h3 {
  font-family: var(--display-font);
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.expertise-block p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* Project Grid Premium */
.project-grid-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: 0.4s;
    border: 1px solid var(--line);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.project-img {
    position: relative;
    height: 280px;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.status-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.status-progress { background: var(--accent); }
.status-completed { background: #10b981; }

.project-info {
    padding: 30px;
}

.project-info h3 {
    font-family: var(--display-font);
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.client-name {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px !important;
}

.project-desc {
    font-size: 0.95rem;
    color: var(--ink-soft);
}

/* Standards Bar */
.standards-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: var(--bg-deep);
    padding: 40px;
    border-radius: var(--radius-xl);
    color: white;
}

.standard-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

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

.standard-item p {
    margin: 0;
    font-size: 1.1rem;
    color: #94a3b8;
}

.standard-item strong {
    color: white;
    display: block;
    font-family: var(--display-font);
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .expertise-split, .project-grid-premium, .standards-bar {
        grid-template-columns: 1fr;
    }
}

/* --- Impact & Social Proof Styles --- */

.stats-strip {
    background: white;
    padding: 60px 0;
    border-bottom: 1px solid var(--line);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item strong {
    display: block;
    font-size: 2.5rem;
    font-family: var(--display-font);
    color: var(--accent);
    margin-bottom: 8px;
}

.stat-item span {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--ink-soft);
    letter-spacing: 1px;
}

/* Testimonials */
.testimonials-section {
    background: var(--bg-soft);
}

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

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}

.testi-stars {
    color: #fbbf24;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    font-size: 1.1rem;
    color: var(--ink);
    margin-bottom: 24px;
    line-height: 1.6;
}

.testi-author strong {
    display: block;
    font-family: var(--display-font);
    font-size: 1.1rem;
}

.testi-author span {
    font-size: 0.85rem;
    color: var(--ink-soft);
}

/* HSE Section */
.hse-section {
    background: white;
}

.hse-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hse-badges {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.hse-badge {
    background: var(--bg-soft);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-deep);
    border: 1px solid var(--line);
}

.hse-visual {
    display: flex;
    justify-content: center;
}

.hse-card {
    background: var(--bg-deep);
    color: white;
    padding: 50px;
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 400px;
}

.hse-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: block;
}

.hse-card h3 {
    font-family: var(--display-font);
    font-size: 1.8rem;
    margin-bottom: 16px;
}

.hse-card p {
    color: #94a3b8;
}

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 64px;
    height: 64px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s;
}

.floating-whatsapp:hover {
    transform: scale(1.1) rotate(5deg);
    background: #128C7E;
}

@media (max-width: 1024px) {
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .hse-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .floating-whatsapp { bottom: 20px; right: 20px; width: 56px; height: 56px; }
}

.footer-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    transform: scale(1.6);
    margin-right: 20px;
}

[dir="rtl"] .footer-logo {
    margin-right: 0;
    margin-left: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-brand strong {
    font-size: 1.8rem;
    font-family: var(--display-font);
    display: block;
    margin-bottom: 4px;
}

.footer-brand p {
    font-size: 1rem;
    color: #94a3b8;
    max-width: 400px;
}

/* --- Modal Styles --- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

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

.modal-card {
    background: white;
    width: 90%;
    max-width: 600px;
    border-radius: var(--radius-xl);
    padding: 50px;
    position: relative;
    transform: translateY(40px);
    transition: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: var(--shadow-lg);
}

.modal-overlay.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    border: none;
    background: none;
    color: var(--ink-soft);
    cursor: pointer;
    line-height: 1;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    font-family: var(--display-font);
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--ink-soft);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--ink);
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--bg-soft);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: white;
    box-shadow: 0 0 0 4px rgba(234, 122, 31, 0.1);
}

.btn-full {
    width: 100%;
    padding: 16px;
    font-size: 1.1rem;
}

/* Modal Success State */
.modal-success {
    text-align: center;
    padding: 40px 0;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    color: white;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
}

.modal-success h3 {
    font-family: var(--display-font);
    font-size: 2rem;
    margin-bottom: 15px;
}

.modal-success p {
    color: var(--ink-soft);
    margin-bottom: 30px;
}

@media (max-width: 640px) {
    .form-row { grid-template-columns: 1fr; }
    .modal-card { padding: 30px; }
    .modal-header h2 { font-size: 1.8rem; }
}

[dir="rtl"] .modal-close {
    right: auto;
    left: 25px;
}

.location-link {
    display: block;
    color: var(--ink);
    text-decoration: none;
    margin-bottom: 15px;
    line-height: 1.6;
    transition: 0.3s;
    font-weight: 500;
}

.location-link:hover {
    color: var(--accent);
}

.btn-small {
    padding: 10px 24px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(234, 122, 31, 0.05);
    color: var(--accent);
    border: 1px solid var(--accent);
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-small::before {
    content: "📍";
    font-size: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.btn-small:hover {
    background: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(234, 122, 31, 0.3);
}
