/* 
 * DP World Custom Bootstrap 5 Theme
 * Renk paleti, tipografi ve bileşenler DP World web sitesinden esinlenilmiştir
 */

/* ========================================
   FONT FACE - Pilat
   ======================================== */
@font-face {
  font-family: 'Pilat';
  src: url('../fonts/Pilat Light.woff2') format('woff2'),
       url('../fonts/Pilat Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pilat';
  src: url('../fonts/Pilat Light.woff2') format('woff2'),
       url('../fonts/Pilat Light.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pilat Wide';
  src: url('../fonts/PilatWide-Regular-woff2.woff2') format('woff2'),
       url('../fonts/PilatWide-Regular-woff.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pilat Wide';
  src: url('../fonts/PilatWide-Bold-woff2.woff2') format('woff2'),
       url('../fonts/PilatWide-Bold-woff.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Pilat Wide';
  src: url('../fonts/PilatWide-Bold-woff2.woff2') format('woff2'),
       url('../fonts/PilatWide-Bold-woff.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ========================================
   ROOT VARIABLES & COLOR PALETTE
   ======================================== */
:root {
    /* Primary Colors - Lucky Point */
    --dpworld-primary: #3e3c90;
    --dpworld-primary-dark: #150f3a;
    --dpworld-primary-light: #2b1d6b;
    
    /* Secondary Colors - Cinder */
    --dpworld-secondary: #0F0F19;
    --dpworld-accent: #00E68C;
    
    /* Bootstrap Color System */
    --bs-primary: #1E1450;
    --bs-primary-rgb: 30, 20, 80;
    --bs-secondary: #0F0F19;
    --bs-secondary-rgb: 15, 15, 25;
    --bs-success: #00E68C;
    --bs-success-rgb: 0, 230, 140;
    --bs-danger: #FF2361;
    --bs-danger-rgb: 255, 35, 97;
    --bs-warning: #FFB800;
    --bs-warning-rgb: 255, 184, 0;
    --bs-info: #00D4FF;
    --bs-info-rgb: 0, 212, 255;
    --bs-light: #F5F3F5;
    --bs-light-rgb: 245, 243, 245;
    --bs-dark: #0F0F19;
    --bs-dark-rgb: 15, 15, 25;
    
    /* Neutral Colors */
    --dpworld-dark: #0F0F19;
    --dpworld-gray: #6c757d;
    --dpworld-gray-light: #F5F3F5;
    --dpworld-gray-medium: #e9ecef;
    
    /* Brand Palette */
    --dpworld-lucky-point: #1E1450;
    --dpworld-radical-red: #FF2361;
    --dpworld-caribbean-green: #00E68C;
    --dpworld-maverick: #F5F3F5;
    --dpworld-cinder: #0F0F19;
    
    /* Text Colors */
    --dpworld-text-primary: #0F0F19;
    --dpworld-text-secondary: #6c757d;
    --dpworld-text-light: #ffffff;
    
    /* Spacing */
    --dpworld-spacing-xs: 0.5rem;
    --dpworld-spacing-sm: 1rem;
    --dpworld-spacing-md: 1.5rem;
    --dpworld-spacing-lg: 2rem;
    --dpworld-spacing-xl: 3rem;
    
    /* Border Radius */
    --dpworld-border-radius: 0px;
    --dpworld-border-radius-lg: 0px;
    
    /* Shadows */
    --dpworld-shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --dpworld-shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --dpworld-shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    
    /* Transitions */
    --dpworld-transition: all 0.3s ease;
    --dpworld-transition-small: all 0.1s ease;
}

/* ========================================
   BOOTSTRAP COLOR OVERRIDES
   ======================================== */
.bg-primary { background-color: #1E1450 !important; }
.bg-secondary { background-color: #0F0F19 !important; }
.bg-success { background-color: #00E68C !important; }
.bg-danger { background-color: #FF2361 !important; }
.bg-warning { background-color: #FFB800 !important; }
.bg-info { background-color: #00D4FF !important; }
.bg-light { background-color: #F5F3F5 !important; }
.bg-dark { background-color: #0F0F19 !important; }

.text-primary { color: #1E1450 !important; }
.text-secondary { color: #0F0F19 !important; }
.text-success { color: #00E68C !important; }
.text-danger { color: #FF2361 !important; }
.text-warning { color: #FFB800 !important; }
.text-info { color: #00D4FF !important; }
.text-dark { color: #0F0F19 !important; }

.btn-primary {
    background-color: #3E3C90;
    border-color: #3E3C90;
}
.btn-primary:hover {
    background-color: #32307a;
    border-color: #32307a;
}

.btn-success {
    background-color: #00E68C;
    border-color: #00E68C;
    color: #0F0F19;
}
.btn-success:hover {
    background-color: #00cc7d;
    border-color: #00cc7d;
}

.btn-danger {
    background-color: #FF2361;
    border-color: #FF2361;
}
.btn-danger:hover {
    background-color: #e61f57;
    border-color: #e61f57;
}

.btn-warning {
    background-color: #FFB800;
    border-color: #FFB800;
    color: #0F0F19;
}
.btn-warning:hover {
    background-color: #e6a600;
    border-color: #e6a600;
}

.btn-info {
    background-color: #00D4FF;
    border-color: #00D4FF;
    color: #0F0F19;
}
.btn-info:hover {
    background-color: #00bfe6;
    border-color: #00bfe6;
}

.btn-secondary {
    background-color: #0F0F19;
    border-color: #0F0F19;
}
.btn-secondary:hover {
    background-color: #1a1a2e;
    border-color: #1a1a2e;
}

/* Outline Buttons */
.btn-outline-primary {
    color: #3e3c90 !important;
    border: 1px solid #1E1450 !important;
    background-color: transparent !important;
}
.btn-outline-primary:hover {
    background-color: #ECECFF !important;
    border-color: #1E1450 !important;
    color: #1E1450 !important;
}

.btn-outline-secondary {
    color: #0F0F19 !important;
    border: 1px solid #0F0F19 !important;
    background-color: transparent !important;
}
.btn-outline-secondary:hover {
    background-color: rgba(15, 15, 25, 0.1) !important;
    border-color: #0F0F19 !important;
    color: #0F0F19 !important;
}

.btn-outline-success {
    color: #00E68C !important;
    border: 1px solid #00E68C !important;
    background-color: transparent !important;
}
.btn-outline-success:hover {
    background-color: rgba(0, 230, 140, 0.1) !important;
    border-color: #00E68C !important;
    color: #00E68C !important;
}

.btn-outline-danger {
    color: #FF2361 !important;
    border: 1px solid #FF2361 !important;
    background-color: transparent !important;
}
.btn-outline-danger:hover {
    background-color: rgba(255, 35, 97, 0.1) !important;
    border-color: #FF2361 !important;
    color: #FF2361 !important;
}

.btn-outline-warning {
    color: #FFB800 !important;
    border: 1px solid #FFB800 !important;
    background-color: transparent !important;
}
.btn-outline-warning:hover {
    background-color: rgba(255, 184, 0, 0.1) !important;
    border-color: #FFB800 !important;
    color: #FFB800 !important;
}

.btn-outline-info {
    color: #00D4FF !important;
    border: 1px solid #00D4FF !important;
    background-color: transparent !important;
}
.btn-outline-info:hover {
    background-color: rgba(0, 212, 255, 0.1) !important;
    border-color: #00D4FF !important;
    color: #00D4FF !important;
}

.alert-success {
    background-color: rgba(0, 230, 140, 0.15);
    border-color: #00E68C;
    color: #006a42;
}

.alert-danger {
    background-color: rgba(255, 35, 97, 0.15);
    border-color: #FF2361;
    color: #99143a;
}

.alert-warning {
    background-color: rgba(255, 184, 0, 0.15);
    border-color: #FFB800;
    color: #996e00;
}

.alert-info {
    background-color: rgba(0, 212, 255, 0.15);
    border-color: #00D4FF;
    color: #006d99;
}

.badge.bg-primary { background-color: #1E1450 !important; }
.badge.bg-success { background-color: #00E68C !important; color: #0F0F19 !important; }
.badge.bg-danger { background-color: #FF2361 !important; }
.badge.bg-warning { background-color: #FFB800 !important; color: #0F0F19 !important; }
.badge.bg-info { background-color: #00D4FF !important; color: #0F0F19 !important; }

.border-primary { border-color: #1E1450 !important; }
.border-success { border-color: #00E68C !important; }
.border-danger { border-color: #FF2361 !important; }
.border-warning { border-color: #FFB800 !important; }
.border-info { border-color: #00D4FF !important; }


/* ========================================
   TYPOGRAPHY
   ======================================== */
body {
    font-family: 'Pilat', 'Times New Roman', serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dpworld-text-primary);
    background-color: #ffffff;
}

p {
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--dpworld-dark);
    margin-bottom: 1rem;
}

h1, .h1,
h2, .h2 {
    font-family: 'Pilat Wide', 'Times New Roman', serif;
}

h1, .h1 { font-size: 2rem; }
h2, .h2 { font-size: 1.75rem; }
h3, .h3 { font-size: 1.6rem; }
h4, .h4 { font-size: 1.4rem; }
h5, .h5 { font-size: 1.2rem; }
h6, .h6 { font-size: 1rem; }

.section-title {
    font-family: 'Pilat Wide', 'Times New Roman', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dpworld-primary);
    margin-bottom: var(--dpworld-spacing-lg);
    letter-spacing: 0.5px;
}

.lead {
    font-size: 1.125rem;
    font-weight: 400;
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar-blur {
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: rgba(185 , 185, 185, 0.70) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 5px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.navbar-light .navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.navbar-light .nav-item {
    margin: 0 5px;
}

.navbar-light .nav-link {
    font-family: 'Pilat Wide', 'Times New Roman', serif;
    color: #000000 !important;
    font-weight: 600;
    font-size: 14px;
    padding: 0.5rem 1rem !important;
    transition: var(--dpworld-transition);
    border-radius: 50px;
}

.navbar-light .nav-link:hover {
    color: #000000 !important;
    background-color: rgba(0, 0, 0, 0.08);
    transform: none;
}

.navbar-light .btn-dpworld-secondary {
    background-color: var(--dpworld-primary);
    color: white;
    border: 2px solid var(--dpworld-primary);
}

.navbar-light .btn-dpworld-secondary:hover {
    background-color: var(--dpworld-secondary);
    border-color: var(--dpworld-secondary);
    color: white;
    transform: translateY(-2px);
}

.btn-icon-navbar {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: transparent;
    color: var(--dpworld-primary);
    border: 2px solid var(--dpworld-primary);
    transition: var(--dpworld-transition);
    text-decoration: none;
    font-size: 1rem;
}

.btn-icon-navbar:hover {
    background-color: var(--dpworld-primary);
    color: white;
    transform: scale(1.1);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    border-radius: 50px;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    transition: var(--dpworld-transition);
   
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

/* Icon-only buttons in navbar (no border) */
.navbar .btn {
    padding: 0.5rem;
    min-width: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: 50%;
}

.navbar .btn:hover {
    background-color: rgba(30, 20, 80, 0.1);
    transform: scale(1.1);
}

.btn-dpworld-primary {
    background-color: #3E3C90;
    color: white;
    border: 2px solid #3E3C90;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-dpworld-primary:hover {
    background-color: #32307a;
    border-color: #32307a;
    color: white;
    box-shadow: var(--dpworld-shadow-md);
}

.btn-dpworld-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
}

.btn-dpworld-secondary:hover {
    background-color: white !important;
    color: var(--dpworld-primary) !important;
    border-color: white !important;
    transform: translateY(-2px);
}

.btn-outline-light {
    border-radius: 50px;
}

.btn-outline-light:hover {
    background-color: white !important;
    border-color: white !important;
}

.btn-dpworld-link {
    color: var(--dpworld-primary);
    background: white;
    border: 2px solid var(--dpworld-primary);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-transform: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 50px;
    transition: var(--dpworld-transition);
}

.btn-dpworld-link:hover {
    background-color: var(--dpworld-primary);
    color: white;
}

.btn-dpworld-link i,
.btn-dpworld-link .fa-arrow-right {
    transition: transform 0.3s ease;
}

.btn-dpworld-link:hover i,
.btn-dpworld-link:hover .fa-arrow-right {
    transform: translateX(3px);
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero-section {
    background-image: url('../hero01.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0;
    padding-top: calc(5rem + 70px); /* Navbar yüksekliği kadar ekstra padding */
    margin-top: -70px; /* Navbar yüksekliği kadar negatif margin */
    position: relative;
    overflow: hidden;
    max-height: 800px;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section .row {
    position: relative;
    z-index: 1;
}

.hero-section .btn-dpworld-primary {
    background-color: #3E3C90;
    border-color: #3E3C90;
}

.hero-section .btn-dpworld-primary:hover {
    background-color: #322f75;
    border-color: #322f75;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(45deg, transparent 45%, rgba(255,255,255,0.03) 50%, transparent 55%),
        linear-gradient(-45deg, transparent 45%, rgba(255,255,255,0.03) 50%, transparent 55%);
    background-size: 60px 60px;
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.min-vh-50 {
    min-height: 50vh;
}

/* ========================================
   CARDS
   ======================================== */
.card {
    border-radius: 0 !important;
}

.card-dpworld {
    border: none;
    border-radius: var(--dpworld-border-radius-lg);
    box-shadow: var(--dpworld-shadow-sm);
    transition: var(--dpworld-transition);
    overflow: hidden;
}

.card-dpworld:hover {
    transform: translateY(-3px);
    box-shadow: var(--dpworld-shadow-md);
}

.card-dpworld .card-body {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-dpworld .card-body .btn-dpworld-link {
    margin-top: auto;
}

/* ========================================
   LIST GROUP
   ======================================== */
.list-group {
    border-radius: 0 !important;
}

.list-group-item {
    border-radius: 0 !important;
}

.list-group-item:first-child {
    border-top-left-radius: 0 !important;
    border-top-right-radius: 0 !important;
}

.list-group-item:last-child {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.card-dpworld-sidebar {
    border: 1px solid var(--dpworld-gray-medium);
    border-radius: var(--dpworld-border-radius-lg);
}

.card-dpworld-sidebar .card-header {
    background-color: var(--dpworld-primary);
    border: none;
    padding: 1.25rem;
}

.icon-box {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: rgba(0, 48, 135, 0.05);
    border-radius: 50%;
}

.text-dpworld-primary {
    color: var(--dpworld-primary) !important;
}

.bg-dpworld-primary {
    background-color: var(--dpworld-primary) !important;
}

/* ========================================
   FORMS
   ======================================== */
.form-control,
.form-select {
    border: 1px solid #dee2e6;
    border-radius: var(--dpworld-border-radius);
    padding: 0.625rem 1rem;
    transition: var(--dpworld-transition);
    font-size: 0.95rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--dpworld-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 48, 135, 0.15);
}

.form-control::placeholder {
    color: #adb5bd;
}

/* ========================================
   ALERTS
   ======================================== */
.alert-dpworld-info {
    background-color: #e7f3ff;
    border-left: 4px solid var(--dpworld-accent);
    border-radius: var(--dpworld-border-radius);
    padding: 1.25rem;
}

.alert-dpworld-info .alert-heading {
    color: var(--dpworld-primary);
    font-weight: 600;
}

/* ========================================
   FEATURE BOX
   ======================================== */
.dpworld-feature-box {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--dpworld-border-radius-lg);
    background-color: var(--dpworld-gray-light);
    transition: var(--dpworld-transition);
}

.dpworld-feature-box:hover {
    background-color: #e9ecef;
    transform: translateX(2px);
}

.dpworld-feature-box .feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dpworld-primary);
    color: white;
    border-radius: var(--dpworld-border-radius);
    font-size: 1.5rem;
}

.dpworld-feature-box .feature-content h5 {
    margin-bottom: 0.5rem;
    color: var(--dpworld-primary);
    font-size: 1.125rem;
}

.dpworld-feature-box .feature-content p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

/* ========================================
   TABLES
   ======================================== */
.table-dpworld {
    background-color: white;
    border-radius: var(--dpworld-border-radius-lg);
    overflow: hidden;
    box-shadow: var(--dpworld-shadow-sm);
}

.table-dpworld thead {
    background-color: var(--dpworld-primary);
    color: white;
}

.table-dpworld thead th {
    padding: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    border: none;
}

.table-dpworld tbody tr {
    transition: var(--dpworld-transition);
}

.table-dpworld tbody tr:hover {
    background-color: rgba(0, 48, 135, 0.03);
}

.table-dpworld tbody td {
    padding: 1rem;
    vertical-align: middle;
    border-bottom: 1px solid var(--dpworld-gray-medium);
}

/* ========================================
   ACCORDION
   ======================================== */
.accordion-item {
    border-radius: 0 !important;
}

.accordion-button {
    border-radius: 0 !important;
}

.accordion-dpworld .accordion-item {
    border: 1px solid var(--dpworld-gray-medium);
    border-radius: var(--dpworld-border-radius-lg) !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-dpworld .accordion-button {
    background-color: white;
    color: var(--dpworld-primary);
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    box-shadow: none;
}

.accordion-dpworld .accordion-button:not(.collapsed) {
    background-color: var(--dpworld-gray-light);
    color: var(--dpworld-primary);
}

.accordion-dpworld .accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 48, 135, 0.15);
    border-color: var(--dpworld-primary);
}

.accordion-dpworld .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23003087'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-dpworld .accordion-body {
    padding: 1.5rem;
    color: var(--dpworld-text-secondary);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--dpworld-text-secondary) 30%, var(--dpworld-primary) 100%);
    position: relative;
}

/* ========================================
   FOOTER
   ======================================== */
.footer-dpworld {
    background: linear-gradient(90deg, rgb(81, 84, 182) 0%, rgb(49, 42, 130) 50%, rgb(30, 19, 67) 100%);
    color: rgba(255, 255, 255, 0.8);
    padding-top: 3rem;
}

.footer-dpworld h5 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.footer-dpworld ul {
    padding: 0;
    margin: 0;
}

.footer-dpworld ul li {
    margin-bottom: 0.5rem;
}

.footer-dpworld a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--dpworld-transition);
    font-size: 0.9rem;
}

.footer-dpworld a:hover {
    color: white;
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: var(--dpworld-transition);
}

.social-icons a:hover {
    background-color: var(--dpworld-primary);
    color: white;
    transform: translateY(-3px);
}

.footer-dpworld hr {
    opacity: 0.1;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.bg-light {
    background-color: var(--dpworld-gray-light) !important;
}

.text-muted {
    color: var(--dpworld-text-secondary) !important;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 991.98px) {
    .hero-section {
        padding: 3rem 0;
    }
    
    h1, .h1 { font-size: 2rem; }
    h2, .h2 { font-size: 1.75rem; }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    h1, .h1 { font-size: 1.75rem; }
    
    .card-dpworld .card-body {
        padding: 1.5rem;
    }
    
    .dpworld-feature-box {
        flex-direction: column;
        text-align: center;
    }
    
    .dpworld-feature-box .feature-icon {
        margin: 0 auto 1rem;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ========================================
   SCROLL BEHAVIOR
   ======================================== */
html {
    scroll-behavior: smooth;
}

/* ========================================
   NAVS & TABS
   ======================================== */
.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--dpworld-gray);
    font-weight: 600;
    font-family: 'Pilat Wide', 'Times New Roman', serif;
    font-size: 14px;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
    background-color: transparent;
    margin-bottom: -1px;
}

.nav-tabs .nav-link:hover {
    border-color: transparent;
    color: var(--dpworld-primary);
    background-color: transparent;
}

.nav-tabs .nav-link.active {
    border-bottom-color: var(--dpworld-primary);
    color: var(--dpworld-primary);
    background-color: transparent;
    font-weight: 600;
}

.nav-pills .nav-link {
    border-radius: 50px;
    padding: 0.5rem 1.5rem;
    color: var(--dpworld-gray);
    font-weight: 500;
    transition: all 0.3s ease;
}

.nav-pills .nav-link:hover {
    background-color: rgba(30, 20, 80, 0.1);
    color: var(--dpworld-primary);
}

.nav-pills .nav-link.active {
    background-color: var(--dpworld-primary);
    color: white;
}

.tab-content {
    padding-top: 1rem;
}

/* ========================================
   SELECTION
   ======================================== */
::selection {
    background-color: var(--dpworld-primary);
    color: white;
}

::-moz-selection {
    background-color: var(--dpworld-primary);
    color: white;
}

/* ========================================
   COMING SOON PAGE
   ======================================== */
.coming-soon-section {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.coming-soon-content {
    animation: fadeInUp 0.8s ease-out;
}

.coming-soon-icon {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

.coming-soon-feature {
    padding: 2rem 1rem;
    border-radius: var(--dpworld-border-radius-lg);
    transition: var(--dpworld-transition);
}

.coming-soon-feature:hover {
    background-color: rgba(30, 20, 80, 0.05);
    transform: translateY(-5px);
}

.feature-icon-small {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    background-color: rgba(30, 20, 80, 0.08);
    border-radius: 50%;
}

.progress-bar.bg-dpworld-primary {
    background-color: var(--dpworld-primary) !important;
}

.coming-soon-section .display-3 {
    font-family: 'Pilat Wide', 'Times New Roman', serif;
    letter-spacing: 2px;
}