@tailwind base;
@tailwind components;
@tailwind utilities;

/* Logo-inspired color variables */
:root {
  --foreground-rgb: 255, 255, 255;
  --background-start-rgb: 15, 45, 42;
  --background-end-rgb: 26, 72, 69;
  --primary-teal: #1a4845;
  --secondary-orange: #ff8c42;
  --accent-blue: #4fb3d4;
  --dark-teal: #0f2d2a;
  --medium-teal: #1e4a47;
  --light-teal: #2d5f5f;
}

@layer base {
  :root {
    --background: 184 42% 11%;
    --foreground: 0 0% 98%;
    --card: 184 42% 15%;
    --card-foreground: 0 0% 98%;
    --popover: 184 42% 15%;
    --popover-foreground: 0 0% 98%;
    --primary: 184 42% 20%;
    --primary-foreground: 0 0% 98%;
    --secondary: 24 100% 63%;
    --secondary-foreground: 0 0% 9%;
    --muted: 184 42% 18%;
    --muted-foreground: 0 0% 70%;
    --accent: 196 65% 55%;
    --accent-foreground: 0 0% 9%;
    --destructive: 0 84.2% 60.2%;
    --destructive-foreground: 0 0% 98%;
    --border: 184 42% 25%;
    --input: 184 42% 18%;
    --ring: 196 65% 55%;
    --chart-1: 24 100% 63%;
    --chart-2: 196 65% 55%;
    --chart-3: 184 42% 35%;
    --chart-4: 24 80% 50%;
    --chart-5: 184 30% 45%;
    --radius: 0.5rem;
  }
}

@layer base {
  * {
    @apply border-border;
  }
  body {
    @apply bg-background text-foreground;
  }
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #f3f4f6;
    background-color: var(--dark-teal);
    direction: rtl;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f3f4f6;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #e5e7eb;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--secondary-orange);
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background: var(--primary-teal);
    color: #fff;
    box-shadow: 0 8px 25px rgba(255, 140, 66, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--accent-blue);
    border: 2px solid var(--accent-blue);
}

.btn-secondary:hover {
    background: var(--accent-blue);
    color: #fff;
    border-color: var(--accent-blue);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background: rgba(79, 145, 140, 0.788);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

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

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Gem Logo Styles */
.logo {
    width: 45px;
    height: 45px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
}

.logo::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--secondary-orange) 0%, #cc6d2e 25%, var(--primary-teal) 50%, var(--light-teal) 75%, var(--accent-blue) 100%);
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    box-shadow: 
        0 0 20px rgba(255, 140, 66, 0.4),
        inset 0 2px 4px rgba(255, 255, 255, 0.3),
        inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    animation: gemSparkle 3s ease-in-out infinite;
}

.logo::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    clip-path: polygon(50% 0%, 80% 20%, 100% 50%, 80% 80%, 50% 100%, 20% 80%, 0% 50%, 20% 20%);
    z-index: 1;
}

@keyframes gemSparkle {
    0%, 100% {
        box-shadow: 
            0 0 20px rgba(255, 140, 66, 0.4),
            inset 0 2px 4px rgba(255, 255, 255, 0.3),
            inset 0 -2px 4px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow: 
            0 0 30px rgba(255, 140, 66, 0.6),
            0 0 40px rgba(79, 179, 212, 0.3),
            inset 0 2px 6px rgba(255, 255, 255, 0.4),
            inset 0 -2px 6px rgba(0, 0, 0, 0.3);
    }
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: #fff;
    margin: 0;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #f3f4f6;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-blue);
    background: rgba(79, 179, 212, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 45, 42, 0);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #f3f4f6;
    max-width: 800px;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Features Section */
.features {
    padding: 5rem 0;
    background: var(--dark-teal);
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: #f3f4f6;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #f3f4f6;
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--medium-teal);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    color: #f3f4f6;
    border: 1px solid rgba(79, 179, 212, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.2);
    background: var(--light-teal);
    border-color: var(--accent-blue);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-card h3 {
    color: #f3f4f6;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #e5e7eb;
    margin: 0;
}

/* CTA Section */
.cta {
    padding: 5rem 0;
    background: var(--primary-teal);
    color: #f3f4f6;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    background: var(--primary-teal);
    color: #f3f4f6;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Gallery Styles */
.gallery {
    padding: 4rem 0;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 140, 66, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: none;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(15, 45, 42, 0.9));
    color: white;
    padding: 2rem 1rem 1rem;
    transform: translateY(0);
    transition: none;
}

.gallery-overlay h3 {
    margin: 0;
    font-size: 1.2rem;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: #fff;
    background: rgba(26, 72, 69, 0.7);
    border: none;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.2s;
}

.play-btn:hover {
    background: var(--accent-blue);
}

.gallery-item video {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 45, 42, 0.95);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    max-height: 80%;
    object-fit: contain;
    animation: zoom 0.3s;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.modal-close:hover {
    color: var(--accent-blue);
}

.modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
}

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

.contact-info h2,
.map-section h2 {
    margin-bottom: 2rem;
    color: #ffffff;
}

.contact-cards {
    margin-bottom: 2rem;
}

.contact-card,
.contact-card.phone,
.contact-card.location,
.contact-card.email,
.working-hours {
    background: var(--medium-teal) !important;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
    color: #f3f4f6;
    border: 1px solid rgba(79, 179, 212, 0.1);
}

.contact-card:hover {
    transform: translateY(-2px);
    border-color: var(--accent-blue);
}

.contact-card.phone,
.contact-card.location {
    background: var(--medium-teal);
}

.contact-card.email {
    background: var(--medium-teal);
}

.contact-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    background: var(--secondary-orange);
}

.contact-card.phone .contact-icon,
.contact-card.email .contact-icon,
.contact-card.location .contact-icon {
    background: var(--accent-blue);
    color: #fff;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: #f3f4f6;
}

.contact-details p {
    margin: 0;
    color: #e5e7eb;
}

.working-hours {
    background: var(--primary-teal);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
}

.working-hours h3 {
    margin-bottom: 1rem;
    color: white;
}

.working-hours p {
    margin: 0;
    opacity: 0.9;
    color: white;
}

/* Map Section Styles */
.map-container {
    background: var(--medium-teal);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    color: #f3f4f6;
    border: 1px solid rgba(79, 179, 212, 0.1);
}

.map-placeholder {
    padding: 3rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--medium-teal), var(--light-teal));
    backdrop-filter: blur(10px);
}

.map-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary-orange), var(--accent-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.map-placeholder h3 {
    color: white;
    margin-bottom: 1rem;
}

.map-placeholder p {
    color: #e5e7eb;
    margin-bottom: 2rem;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.location-features {
    background: var(--medium-teal);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    color: #f3f4f6;
    border: 1px solid rgba(79, 179, 212, 0.1);
}

.location-features h3 {
    color: #f3f4f6;
    margin-bottom: 1.5rem;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(79, 179, 212, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 140, 66, 0.2);
    transform: translateX(-5px);
}

.feature-item i {
    color: var(--accent-blue);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: #f3f4f6;
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: var(--dark-teal);
    color: #f3f4f6;
    padding: 3rem 0;
    border-top: 1px solid var(--primary-teal);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-brand h3 {
    margin: 0;
    font-size: 1.5rem;
}

.footer-desc {
    color: #e5e7eb;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.footer-contact {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #ccc;
}

.contact-item i {
    color: var(--accent-blue);
}

.footer-bottom {
    border-top: 1px solid var(--primary-teal);
    padding-top: 1.5rem;
    color: #999;
}

.footer-bottom p {
    margin: 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zoom {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--medium-teal);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-link {
        color: #fff;
    }
    .nav-link:hover,
    .nav-link.active {
        color: var(--accent-blue);
        background: rgba(79, 179, 212, 0.1);
    }
    .nav-toggle {
        display: flex;
    }
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .features-list {
        grid-template-columns: 1fr;
    }
    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 15px;
    }
    .page-header h1 {
        font-size: 2rem;
    }
    .modal-content {
        width: 95%;
    }
    .modal-close {
        top: 10px;
        right: 20px;
        font-size: 30px;
    }
    .map-placeholder {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .nav-container {
        padding: 1rem;
    }
    .feature-card {
        padding: 1.5rem;
    }
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .btn-large {
        padding: 14px 28px;
        font-size: 1rem;
    }
    .contact-card {
        padding: 1rem;
    }
    .map-placeholder {
        padding: 1.5rem 1rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-teal);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-orange);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 25px;
  justify-content: center;
  align-items: center;
}

.social-icons a {
  color: #fff;
  font-size: 24px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--accent-blue);
}

/* Testimonials */
 .testimonials {
      background: var(--primary-teal);
      padding: 50px 20px;
      text-align: center;
      color: #f3f4f6;
    }
    
    .testimonial-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
    }
    
    .testimonial {
      background: var(--medium-teal);
      padding: 25px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.2);
      color: #f3f4f6;
      border: 1px solid rgba(79, 179, 212, 0.1);
    }
    
    .testimonial-text {
      font-style: italic;
      margin-bottom: 15px;
      text-align: center;
    }
    
    .testimonial-author {
      font-weight: bold;
      color: var(--secondary-orange);
    }

/* FAQ */
  .faq-container {
      max-width: 800px;
      margin: 0 auto;
      text-align: center;
      color: #f3f4f6;
    }
    
    .faq-item {
      margin-bottom: 15px;
      border: 1px solid var(--accent-blue);
      border-radius: 8px;
      overflow: hidden;
      background: var(--medium-teal);
    }
    
    .faq-question {
      padding: 15px;
      background: var(--medium-teal);
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: #f3f4f6;
    }
    
    .faq-answer {
      padding: 15px;
      background: var(--dark-teal);
      display: none;
      color: #e5e7eb;
    }
    
    .faq-question i {
      transition: transform 0.3s;
      color: var(--accent-blue);
    }
    
    .faq-item.active .faq-question i {
      transform: rotate(180deg);
    }
    
    .faq-item.active .faq-answer {
      display: block;
    }

/* Navbar Logo */
.navbar-logo {
  height: 65px;
  width: 100px;
  object-fit: contain;
  margin-right: 10px;
  vertical-align: middle;
}

/* Booking Terms Section */
.terms-section {
    background: var(--primary-teal);
    padding: 3rem 0 2rem 0;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.terms-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--medium-teal);
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2), 0 1.5px 6px rgba(0, 0, 0, 0.15);
    padding: 2.5rem 2rem;
    border: 1.5px solid rgba(79, 179, 212, 0.2);
    backdrop-filter: blur(10px);
    color: #f3f4f6;
}

.terms-title {
    text-align: center;
    color: #f3f4f6;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
}

.terms-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.terms-list li {
    position: relative;
    padding-right: 2.2em;
    margin-bottom: 1.1em;
    font-size: 1.08rem;
    color: #f3f4f6;
    background: rgba(79, 179, 212, 0.1);
    border-radius: 8px;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    padding-left: 1em;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
}

.terms-list li:before {
    content: "\f058";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary-orange);
    position: absolute;
    right: 0.7em;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.1em;
}

@media (max-width: 600px) {
  .terms-container {
    padding: 1.2rem 0.5rem;
  }
  .terms-title {
    font-size: 1.3rem;
  }
  .terms-list li {
    font-size: 0.98rem;
    padding-right: 2em;
  }
}

/* Hide Next.js badge and error messages */
body > nextjs-portal {
  display: none;
}