/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

/* Header Styles */
.header-area {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.top-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.85rem;
}

.top-header .contact-info {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
}

.top-header .contact-info span {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.top-header .social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.top-header .social-links a:hover {
    color: #e0e7ff;
    transform: translateY(-2px);
}

.main-header {
    background: white;
    padding: 0.5rem 0;
    border-bottom: 1px solid #e9ecef;
}

.navbar-brand {
    display: flex;
    align-items: center;
    color: #333 !important;
    font-weight: 700;
    font-size: 1.2rem;
    text-decoration: none;
}

.navbar-brand img {
    margin-right: 12px;
}

.brand-text {
    line-height: 1.2;
    color: #2563eb !important;
}

.brand-text small {
    font-size: 0.75rem;
    color: #666 !important;
    font-weight: 400;
}

.navbar-nav .nav-link {
    color: #333 !important;
    font-weight: 500;
    padding: 0.8rem 1rem !important;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #2563eb !important;
    background-color: rgba(37, 99, 235, 0.1);
    border-radius: 6px;
}

.navbar-nav .nav-link i {
    font-size: 0.9rem;
}

/* Dropdown Styles - Improved */
.dropdown-menu {
    background: white;
    border: none;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    min-width: 220px;
    max-width: 280px;
    z-index: 1050;
    position: absolute;
}

.dropdown-item {
    padding: 0.75rem 1.25rem;
    color: #333;
    transition: all 0.3s ease;
    border-radius: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #2563eb;
    transform: translateX(3px);
}

.dropdown-item:focus {
    background-color: #f8f9fa;
    color: #2563eb;
}

.dropdown-item i {
    width: 18px;
    color: #666;
    transition: color 0.3s ease;
    font-size: 0.85rem;
}

.dropdown-item:hover i {
    color: #2563eb;
}

.dropdown-divider {
    margin: 0.5rem 0;
    opacity: 0.3;
}

.navbar-toggler {
    border: none;
    padding: 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.main-content {
    min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #2563eb 100%);
    color: white;
    padding: 100px 0;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.05)" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.min-vh-50 {
    min-height: 50vh;
}

.hero-badge .badge {
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-title .text-warning {
    color: #fbbf24 !important;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    max-width: 550px;
}

.hero-features {
    background: rgba(255,255,255,0.1);
    border-radius: 15px;
    padding: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.feature-item {
    display: flex;
    align-items: center;
    font-size: 1rem;
    font-weight: 600;
    color: white;
}

.feature-item i {
    font-size: 1.2rem;
}

.hero-actions .btn {
    border-radius: 30px;
    padding: 15px 30px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-actions .btn-warning {
    background: #fbbf24;
    border-color: #fbbf24;
    color: #1e40af;
}

.hero-actions .btn-warning:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.hero-actions .btn-outline-light {
    background: transparent;
    border-color: rgba(255,255,255,0.5);
    color: white;
}

.hero-actions .btn-outline-light:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
    transform: translateY(-2px);
}

.hero-visual {
    position: relative;
    text-align: center;
    padding: 40px 0;
}

.hero-image-container {
    position: relative;
    display: inline-block;
}

.hero-logo {
    width: 200px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
    position: relative;
    z-index: 3;
}

.hero-circles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 4s ease-in-out infinite;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: rgba(251,191,36,0.1);
    top: -150px;
    left: -150px;
    animation-delay: 1s;
}

.circle-3 {
    width: 400px;
    height: 400px;
    background: rgba(255,255,255,0.05);
    top: -200px;
    left: -200px;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-logo {
        width: 180px;
    }
    
    .hero-features {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 10px;
    }
    
    .hero-logo {
        width: 140px;
    }
    
    .hero-features .col-sm-4 {
        text-align: center;
    }
    
    .feature-item {
        justify-content: center;
    }
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.hero-content h2 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.7;
}

.hero-buttons .btn {
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.1);
    color: white;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.hero-buttons .btn:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.hero-image {
    text-align: center;
    position: relative;
}

.hero-image img {
    max-width: 80%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.3));
}

.hero-logo {
    text-align: center;
    position: relative;
}

.hero-logo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    z-index: 1;
}

.hero-logo img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

/* Announcements Section */
.announcements-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.announcements-section h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 3rem;
}

.announcement-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.announcement-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.announcement-content h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.announcement-content p {
    color: #666;
    margin-bottom: 0.5rem;
}

.carousel-indicators {
    position: static;
    margin-top: 30px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #2563eb;
    border: none;
    margin: 0 5px;
}

/* Quick Access Section */
.quick-access-section {
    padding: 80px 0;
    background: white;
}

.quick-access-section h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 3rem;
}

.section-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Quick Card Styles */
.quick-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.quick-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.quick-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.quick-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.quick-card h4 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.quick-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
}

.quick-card .btn {
    border-radius: 25px;
    padding: 10px 20px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.service-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.service-card h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-card .btn {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 8px;
    padding: 10px 25px;
    font-weight: 500;
    color: white;
    transition: all 0.3s ease;
}

.service-card .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.service-link {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.service-link:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: scale(1.1);
    color: white;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-section h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-section h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.contact-card {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.contact-card h5 {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* All Services Section */
.all-services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.all-services-section h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 3rem;
}

.service-list {
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    height: 100%;
}

.service-list h6 {
    color: #2563eb;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e9ecef;
}

.service-list ul {
    list-style: none;
    padding: 0;
}

.service-list li {
    margin-bottom: 10px;
}

.service-list a {
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: block;
    padding: 5px 0;
}

.service-list a:hover {
    color: #2563eb;
}

/* Contact Info Section */
.contact-info-section {
    padding: 80px 0;
    background: white;
}

.contact-info-section h3 {
    color: #333;
    font-weight: 700;
    margin-bottom: 3rem;
}

.contact-item {
    text-align: center;
    padding: 20px;
}

.contact-item i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 15px;
}

.contact-item h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-item p {
    color: #666;
    margin: 0;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
    padding: 50px 0 20px;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 8px;
}

.footer ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    margin-top: 30px;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

/* Form Styles */
.form-section {
    padding: 40px 0;
    background: #f8f9fa;
}

.form-container {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 30px;
}

.form-header h2 {
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-control {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 0.2rem rgba(37, 99, 235, 0.25);
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
    border-radius: 8px;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content h2 {
        font-size: 1.4rem;
    }
    
    .hero-section {
        padding: 60px 0;
        text-align: center;
    }
    
    .hero-logo {
        margin-top: 30px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .announcement-card {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item {
        margin-bottom: 30px;
    }
    
    .top-header .contact-info {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-header .social-links {
        text-align: center;
        margin-top: 10px;
    }
    
    .brand-text {
        display: none;
    }
}

/* Status Badges */
.status-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.status-pending {
    background: #fef3c7;
    color: #d97706;
}

.status-processing {
    background: #dbeafe;
    color: #2563eb;
}

.status-completed {
    background: #d1fae5;
    color: #059669;
}

.status-rejected {
    background: #fee2e2;
    color: #dc2626;
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.timeline-item {
    position: relative;
    padding: 20px 0 20px 70px;
    border-bottom: 1px solid #e9ecef;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 30px;
    width: 12px;
    height: 12px;
    background: #2563eb;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px #e9ecef;
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-content h6 {
    color: #333;
    font-weight: 600;
    margin-bottom: 5px;
}

.timeline-content p {
    color: #666;
    margin-bottom: 5px;
}

.timeline-content small {
    color: #999;
}

/* Payment Steps */
.payment-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
    padding: 0 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    flex: 1;
    max-width: 200px;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 60%;
    width: 80%;
    height: 2px;
    background: #e9ecef;
    z-index: 1;
}

.step.active:not(:last-child)::after {
    background: #2563eb;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e9ecef;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-bottom: 10px;
    position: relative;
    z-index: 2;
}

.step.active .step-number {
    background: #2563eb;
    color: white;
}

.step.completed .step-number {
    background: #059669;
    color: white;
}

.step-title {
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
}

.step.active .step-title {
    color: #2563eb;
}

/* Table Styles */
.table-responsive {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.table {
    margin-bottom: 0;
}

.table th {
    background: #f8f9fa;
    border-bottom: 2px solid #e9ecef;
    font-weight: 600;
    color: #333;
}

.table td {
    vertical-align: middle;
}

/* Alert Styles */
.alert {
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
}

.alert-info {
    background: #e0f2fe;
    color: #0277bd;
}

.alert-success {
    background: #e8f5e8;
    color: #2e7d32;
}

.alert-warning {
    background: #fff3cd;
    color: #f57c00;
}

.alert-danger {
    background: #ffebee;
    color: #c62828;
}

/* Decision Item Styles */
.decision-item {
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.decision-item:last-child {
    border-bottom: none;
}

.decision-details {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-top: 15px;
}

/* Announcement Item Styles */
.announcement-item {
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
}

.announcement-item:last-child {
    border-bottom: none;
}

.announcement-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin: 0 auto;
}

/* Payment Method Cards */
.payment-method-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-method-card:hover {
    border-color: #2563eb;
    transform: translateY(-2px);
}

.payment-method-card.selected {
    border-color: #2563eb;
    background-color: #f8f9ff;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .top-header .contact-info {
        font-size: 0.8rem;
    }
    
    .top-header .contact-info span {
        margin-bottom: 0.25rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.6rem 0 !important;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: #f8f9fa;
        border: none;
        box-shadow: none;
        border-radius: 0;
        padding: 0;
    }
    
    .dropdown-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
    
    .dropdown-item:hover {
        transform: none;
        background-color: #e9ecef;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 2rem 0;
    margin: -1rem -15px 0;
    border-radius: 0 0 15px 15px;
}

/* Full Width Page Header */
.page-header-full {
    background: #1e51db!important;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.page-header-full .page-title i {
    color: white !important;
}

.page-header-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    z-index: 1;
}

.page-header-full .container {
    position: relative;
    z-index: 2;
}

.page-header-full .page-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-header-full .page-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.page-header-full .btn-light {
    background: rgba(255,255,255,0.95);
    border: none;
    font-weight: 500;
    padding: 12px 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.page-header-full .btn-light:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.page-description {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 0;
}

/* Randevu Sayfası Özel Stilleri */
.info-item {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 1rem;
}

.info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-item h6 {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-item p {
    margin-bottom: 0.25rem;
    color: #666;
}

.info-item small {
    color: #999;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-control.is-valid {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.valid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #28a745;
}

/* Appointment Details in Modal */
.appointment-details p {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.appointment-details strong {
    color: #2563eb;
}

/* Card Hover Effects */
.card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Button Styles */
.btn {
    border-radius: 6px;
    font-weight: 500;
    padding: 0.6rem 1.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #6c757d;
    border: none;
}

.btn-secondary:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
}

.btn-success {
    background-color: #28a745;
    border: none;
}

.btn-success:hover {
    background-color: #218838;
    transform: translateY(-1px);
}

/* Loading Spinner */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .card-body {
        padding: 1rem;
    }
    
    .info-item h6 {
        font-size: 1rem;
    }
    
    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .page-header-full {
        padding: 40px 0 !important;
    }
    
    .page-header-full .page-title {
        font-size: 2rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .page-header-full .page-description {
        font-size: 1rem !important;
    }
    
    .page-header-full .btn-light {
        font-size: 0.9rem;
        padding: 10px 20px;
    }
}

@media (max-width: 576px) {
    .page-header-full {
        padding: 30px 0 !important;
        text-align: center;
    }
    
    .page-header-full .page-title {
        font-size: 1.75rem !important;
    }
    
    .page-header-full .page-description {
        font-size: 0.95rem !important;
        margin-bottom: 1rem !important;
    }
    
    .page-header-full .col-md-4 {
        text-align: center !important;
    }

    .page-header {
        padding: 1.5rem 0;
    }
    
    .page-title {
        font-size: 1.75rem;
    }
    
    .page-description {
        font-size: 0.95rem;
    }
    
    .d-grid.gap-2.d-md-flex {
        gap: 0.5rem !important;
    }
    
    .d-grid.gap-2.d-md-flex .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .d-grid.gap-2.d-md-flex .btn:last-child {
        margin-bottom: 0;
    }
    
    /* Hero Section Responsive */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 10px 20px;
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    /* Quick Card Responsive */
    .quick-card {
        margin-bottom: 1.5rem;
    }
    
    .quick-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .quick-card h4 {
        font-size: 1.1rem;
    }
    
    /* Contact Card Responsive */
    .contact-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-card h5 {
        font-size: 1.1rem;
    }
    
    /* Service Card Responsive */
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card h5 {
        font-size: 1.1rem;
    }
    
    /* Section Titles Responsive */
    .section-title {
        font-size: 2rem;
    }
}

/* Footer Styles */
.footer-simple {
    background: #1e293b;
    color: white;
    margin-top: 50px;
}

.footer-simple .social-links a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footer-simple .social-links a:hover {
    color: #fbbf24;
}

.footer-simple ul li {
    margin-bottom: 5px;
}

.footer-simple ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-simple ul li a:hover {
    color: #fbbf24;
}
