:root {
    --degiad-dark: #121625;
    --degiad-navy: #172135;
    --degiad-red: #7b1035;
    --degiad-white: #ffffff;
    --degiad-cream: #e9e7cd;
}
/* Font Import */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Global Styles */
body {
    font-family: 'Montserrat', sans-serif;
}

/* Kurumsal Renkler */
.bg-degiad-dark {
    background-color: #121625!important ;
}

.bg-degiad-navy {
    background-color: #172135!important ;
}

.bg-degiad-red {
    background-color: #7b1035!important ;
}

.bg-degiad-white {
    background-color: #ffffff!important ;
}

.bg-degiad-cream {
    background-color: #e9e7cd!important ;
}

.text-degiad-dark {
    color: #121625!important ;
}

.text-degiad-navy {
    color: #172135!important ;
}

.text-degiad-red {
    color: #7b1035!important ;
}

.text-degiad-white {
    color: #ffffff!important ;
}

.text-degiad-cream {
    color: #e9e7cd!important ;
}

/* Hover States */
.hover-text-degiad-cream:hover {
    color: #e9e7cd!important ;
}

.hover-text-degiad-white:hover {
    color: #ffffff!important ;
}

.hover-bg-degiad-red:hover {
    background-color: #7b1035!important ;
}

/* Border Colors */
.border-degiad-dark {
    border-color: #121625!important ;
}

.border-degiad-navy {
    border-color: #172135!important ;
}

.border-degiad-red {
    border-color: #7b1035!important ;
}

.border-degiad-cream {
    border-color: #e9e7cd!important ;
}

/* Sayaç Stilleri */
.counter {
    font-size: 2.5rem;
    font-weight: 700;
    color: #121625;
    margin-bottom: 0.5rem;
}

.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

.card-body {
    padding: 2rem;
}

.card i {
    transition: transform 0.3s ease;
}

.card:hover i {
    transform: scale(1.1);
}

/* Timeline Styles */
.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: #e9e7cd;
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #7b1035;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px #7b1035;
}

.timeline-content {
    position: relative;
    width: calc(50% - 30px);
    padding: 1.5rem;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-header {
    margin-bottom: 1.5rem;
}

.timeline-header h2 {
    color: #7b1035;
    font-size: 2rem;
    font-weight: 600;
}

.timeline-body .card {
    border: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.timeline-body .card:hover {
    transform: translateY(-5px);
}
/* Responsive Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        left: 30px;
    }

    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }

    .timeline-header h2 {
        font-size: 1.5rem;
    }
} 
/* Nested Dropdown Menu Styles */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    margin-left: 0;
    background-color: var(--degiad-white);
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 0.25rem;
}

.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

.dropdown-submenu > a:after {
    display: block;
    content: " ";
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #ccc;
    margin-top: 5px;
    margin-right: -10px;
}

.dropdown-submenu:hover > a:after {
    border-left-color: #fff;
}

.dropdown-submenu.pull-left {
    float: none;
}

.dropdown-submenu.pull-left > .dropdown-menu {
    left: -100%;
    margin-left: 10px;
    -webkit-border-radius: 6px 0 6px 6px;
    -moz-border-radius: 6px 0 6px 6px;
    border-radius: 6px 0 6px 6px;
}

/* Mobile specific styles */
@media (max-width: 991.98px) {
    .navbar-nav .dropdown-menu {
        background-color: var(--degiad-dark);
        border: none;
    }

    .dropdown-submenu .dropdown-menu {
        position: static !important;
        left: auto !important;
        margin-left: 0 !important;
        margin-top: 0.5rem;
        background-color: var(--degiad-navy);
        border: none;
    }

    .dropdown-submenu .dropdown-submenu-menu .dropdown-item {
        padding-left: 1rem!important;
        background-color: var(--degiad-navy);
        color: var(--degiad-white);
    }

    .dropdown-submenu > a:after {
        display: none;
    }

    .dropdown-submenu .dropdown-item:hover {
        background-color: rgba(255,255,255,0.1);
        color: var(--degiad-white);
    }

    .dropdown-item {
        color: rgba(255,255,255,0.8);
    }

    .dropdown-item:hover {
        background-color: rgba(255,255,255,0.1);
        color: var(--degiad-white);
    }

    .dropdown-toggle::after {
        border-top-color: rgba(255,255,255,0.8);
    }
    .navbar-login {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .carousel-item {
        height: 300px;
    }

    .carousel-item img {
        object-fit: cover;
        height: 100%;
    }

    .carousel-caption {
        bottom: 0;
        padding: 1rem;
        background: rgba(0, 0, 0, 0.5);
    }

    .carousel-caption h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .carousel-caption p {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }

    .carousel-indicators {
        bottom: 0;
    }
}

/* Desktop specific styles */
@media (min-width: 992px) {
    .dropdown-submenu .dropdown-menu {
        min-width: 200px;
    }

    .dropdown-submenu .dropdown-item {
        padding: 0.5rem 1rem;
        color: var(--degiad-dark);
    }

    .dropdown-submenu .dropdown-item:hover {
        color: var(--degiad-dark);
    }
}

/* Calendar Mobile Styles */
@media (max-width: 768px) {
    #calendar {
        font-size: 0.9rem;
    }

    .fc-toolbar {
        flex-direction: column;
        gap: 0.5rem;
    }

    .fc-toolbar-title {
        font-size: 1.2rem !important;
        margin-bottom: 0.5rem;
    }

    .fc-button {
        padding: 0.3rem 0.6rem;
        font-size: 0.8rem;
    }

    .fc-daygrid-day {
        min-height: 60px !important;
    }

    .fc-daygrid-day-number {
        font-size: 0.8rem;
        padding: 2px 4px !important;
    }

    .fc-daygrid-event {
        font-size: 0.7rem;
        padding: 1px 3px;
        margin: 1px 0;
    }

    .fc-event-title {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .fc-daygrid-more-link {
        font-size: 0.7rem;
        padding: 2px 4px;
    }

    .fc-popover {
        max-width: 90vw;
    }

    .fc-popover-header {
        padding: 0.5rem;
    }

    .fc-popover-body {
        padding: 0.5rem;
    }

    .fc-event-popover {
        font-size: 0.8rem;
    }
}

/* Calendar General Styles */
#calendar {
    background-color: var(--degiad-white);
    border-radius: 0.5rem;
    padding: 1rem;
}

.fc-toolbar {
    margin-bottom: 1rem !important;
}

.fc-button-primary {
    background-color: var(--degiad-navy) !important;
    border-color: var(--degiad-navy) !important;
}

.fc-button-primary:hover {
    background-color: var(--degiad-red) !important;
    border-color: var(--degiad-red) !important;
}

.fc-button-active {
    background-color: var(--degiad-red) !important;
    border-color: var(--degiad-red) !important;
}

.fc-event {
    background-color: var(--degiad-navy) !important;
    border-color: var(--degiad-navy) !important;
}

.fc-event:hover {
    background-color: var(--degiad-red) !important;
    border-color: var(--degiad-red) !important;
}

.fc-day-today {
    background-color: rgba(124, 16, 53, 0.1) !important;
}

.fc-daygrid-day-number {
    color: var(--degiad-navy);
    font-weight: 500;
}

.fc-daygrid-day.fc-day-today .fc-daygrid-day-number {
    color: var(--degiad-red);
    font-weight: bold;
}

/* Üyelik Bandı Stilleri */
.btn-degiad-red {
    background-color: var(--degiad-red) !important;
    border-color: var(--degiad-red) !important;
    transition: all 0.3s ease;
}

.btn-degiad-red:hover {
    background-color: #9a1a3a !important;
    border-color: #9a1a3a !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .btn-degiad-red {
        width: 100%;
        max-width: 300px;
    }
}

.btn-outline-degiad-red {
    color: var(--degiad-red) !important;
    border-color: var(--degiad-red) !important;
    background-color: transparent !important;
    transition: all 0.3s ease;
}

.btn-outline-degiad-red:hover {
    color: white !important;
    background-color: var(--degiad-red) !important;
    border-color: var(--degiad-red) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Hero Slider Styles */
.hero-slider {
    position: relative;
    height: 500px;
    overflow: hidden;
}

#heroCarousel {
    border-radius: 0 !important;
    height: 500px;
}

#heroCarousel .carousel-inner {
    border-radius: 0 !important;
    height: 500px;
}

#heroCarousel .carousel-item {
    border-radius: 0 !important;
    height: 500px;
}

.slide-bg {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 0 !important;
}

.slide-1 {
    background: linear-gradient(135deg, var(--degiad-dark) 0%, var(--degiad-navy) 100%);
}

.slide-2 {
    background: linear-gradient(135deg, var(--degiad-navy) 0%, var(--degiad-red) 100%);
}

.slide-3 {
    background: linear-gradient(135deg, var(--degiad-red) 0%, var(--degiad-dark) 100%);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.slide-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    padding: 2rem 1rem;
    width: 100%;
    animation: slideInUp 0.8s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-badge {
    display: inline-block;
    background: var(--degiad-red);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: fadeInDown 0.8s ease-out 0.2s both;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-title .highlight {
    color: var(--degiad-cream);
    position: relative;
}

.slide-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--degiad-cream);
    transform: scaleX(0);
    animation: expandWidth 0.8s ease-out 1s forwards;
}

@keyframes expandWidth {
    to {
        transform: scaleX(1);
    }
}

.slide-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeIn 0.8s ease-out 0.6s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    min-width: 100px;
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--degiad-cream);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.slide-features {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-item i {
    font-size: 1.1rem;
    color: var(--degiad-cream);
}

.feature-item span {
    font-weight: 500;
    font-size: 0.9rem;
}

.slide-benefits {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1.2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 220px;
    transition: transform 0.3s ease, background 0.3s ease;
}

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

.benefit-icon {
    width: 45px;
    height: 45px;
    background: var(--degiad-cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--degiad-dark);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
}

.benefit-text h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.benefit-text p {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-size: 0.8rem;
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 25px;
    height: 25px;
}

.carousel-indicators {
    bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.carousel-indicators button.active {
    transform: scale(1.2);
    border-radius: 0 !important;
}

/* Carousel Transitions */
.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.circle-main {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: var(--degiad-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 4px 20px rgba(123, 16, 53, 0.3);
}

.event-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--degiad-cream);
    border-radius: 50%;
    animation: dotPulse 2s ease-in-out infinite;
}

.dot-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.dot-2 {
    top: 60%;
    right: 20%;
    animation-delay: 0.7s;
}

.dot-3 {
    bottom: 20%;
    left: 50%;
    animation-delay: 1.4s;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.7;
    }
}

/* Membership Visual */
.membership-visual {
    position: relative;
    width: 200px;
    height: 200px;
}

.ring-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.ring {
    position: absolute;
    border: 2px solid var(--degiad-red);
    border-radius: 50%;
    animation: ringRotate 15s linear infinite;
}

.ring-1 {
    width: 150px;
    height: 150px;
    top: 25px;
    left: 25px;
    animation-delay: 0s;
}

.ring-2 {
    width: 200px;
    height: 200px;
    top: 0;
    left: 0;
    animation-delay: -7.5s;
    border-color: var(--degiad-cream);
}

@keyframes ringRotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.center-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--degiad-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 20px rgba(123, 16, 53, 0.3);
}

/* Carousel Controls */
.carousel-control-prev,
.carousel-control-next {
    width: 45px;
    height: 45px;
    background: rgba(123, 16, 53, 0.9);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 15px;
    border: none;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 18px;
    height: 18px;
}

.carousel-indicators {
    bottom: 20px;
}

.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 0 !important;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    margin: 0 4px;
    transition: all 0.3s ease;
}

.carousel-indicators button.active {
    background-color: var(--degiad-red);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 991.98px) {
    .modern-slider {
        height: 450px;
    }
    
    .slider-heading {
        font-size: 2rem;
    }
    
    .slider-text {
        font-size: 0.95rem;
    }
    
    .slider-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .visual-container {
        height: 250px;
    }
    
    .icon-grid {
        gap: 1.5rem;
    }
    
    .icon-item {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .event-circle {
        width: 180px;
        height: 180px;
    }
    
    .circle-main {
        width: 100px;
        height: 100px;
        font-size: 2rem;
    }
    
    .membership-visual {
        width: 180px;
        height: 180px;
    }
    
    .ring-1 {
        width: 130px;
        height: 130px;
    }
    
    .ring-2 {
        width: 180px;
        height: 180px;
    }
    
    .center-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .modern-slider {
        height: 500px;
        padding: 1rem 0;
    }
    
    .modern-slider .slider-content {
        text-align: center;
        padding: 1rem 0;
    }
    
    .modern-slider .slider-heading {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .modern-slider .slider-text {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .modern-slider .slider-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }
    
    .modern-slider .slider-stats {
        justify-content: center;
        gap: 1.5rem;
        margin-top: 1.5rem;
    }
    
    .modern-slider .stat-number {
        font-size: 1.5rem;
    }
    
    .modern-slider .stat-label {
        font-size: 0.8rem;
    }
    
    .modern-slider .slider-features {
        align-items: center;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .modern-slider .feature {
        justify-content: center;
        padding: 0.6rem 0;
    }
    
    .modern-slider .feature i {
        font-size: 1.1rem;
    }
    
    .modern-slider .feature span {
        font-size: 0.9rem;
    }
    
    .modern-slider .slider-benefits {
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
    }
    
    .modern-slider .benefit {
        flex-direction: column;
        text-align: center;
        padding: 1.2rem 1rem;
        gap: 0.8rem;
    }
    
    .modern-slider .benefit-icon {
        margin-bottom: 0.3rem;
        font-size: 1.3rem;
    }
    
    .modern-slider .benefit-text h5 {
        font-size: 0.95rem;
        margin-bottom: 0.2rem;
    }
    
    .modern-slider .benefit-text p {
        font-size: 0.8rem;
    }
    
    .slider-visual {
        order: -1;
        margin-bottom: 1.5rem;
        height: auto;
    }
    
    .visual-container {
        height: 180px;
    }
    
    .icon-grid {
        gap: 1rem;
        max-width: 160px;
    }
    
    .icon-item {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .event-circle {
        width: 140px;
        height: 140px;
    }
    
    .circle-main {
        width: 90px;
        height: 90px;
        font-size: 2rem;
    }
    
    .dot {
        width: 12px;
        height: 12px;
    }
    
    .membership-visual {
        width: 140px;
        height: 140px;
    }
    
    .ring-1 {
        width: 100px;
        height: 100px;
    }
    
    .ring-2 {
        width: 140px;
        height: 140px;
    }
    
    .center-icon {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
        margin: 0 10px;
    }
    
    .carousel-indicators {
        bottom: 20px;
    }
    
    .carousel-indicators button {
        width: 12px;
        height: 12px;
        margin: 0 5px;
    }
}

@media (max-width: 575.98px) {
    .modern-slider {
        height: 450px;
    }
    
    .modern-slider .slider-heading {
        font-size: 1.8rem;
    }
    
    .modern-slider .slider-text {
        font-size: 0.95rem;
    }
    
    .modern-slider .slider-stats {
        gap: 1rem;
    }
    
    .modern-slider .stat-number {
        font-size: 1.3rem;
    }
    
    .visual-container {
        height: 150px;
    }
    
    .icon-grid {
        max-width: 140px;
        gap: 0.8rem;
    }
    
    .icon-item {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .event-circle {
        width: 120px;
        height: 120px;
    }
    
    .circle-main {
        width: 80px;
        height: 80px;
        font-size: 1.8rem;
    }
    
    .membership-visual {
        width: 120px;
        height: 120px;
    }
    
    .ring-1 {
        width: 90px;
        height: 90px;
    }
    
    .ring-2 {
        width: 120px;
        height: 120px;
    }
    
    .center-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

/* Mobile Responsive for Hero Slider */
@media (max-width: 991.98px) {
    .hero-slider {
        height: 400px;
    }
    
    #heroCarousel {
        height: 400px;
    }
    
    #heroCarousel .carousel-inner {
        height: 400px;
    }
    
    #heroCarousel .carousel-item {
        height: 400px;
    }
    
    .slide-bg {
        height: 400px;
    }
    
    .slide-content {
        padding: 1.5rem 1rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .slide-stats {
        gap: 1.5rem;
    }
    
    .stat-item {
        min-width: 90px;
        padding: 1rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .slide-features {
        gap: 1.2rem;
    }
    
    .slide-benefits {
        gap: 1.2rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 767.98px) {
    .hero-slider {
        height: 350px;
    }
    
    #heroCarousel {
        height: 350px;
    }
    
    #heroCarousel .carousel-inner {
        height: 350px;
    }
    
    #heroCarousel .carousel-item {
        height: 350px;
    }
    
    .slide-bg {
        height: 350px;
    }
    
    .slide-content {
        padding: 1.2rem 1rem;
    }
    
    .slide-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
        margin-bottom: 1.2rem;
    }
    
    .slide-title {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }
    
    .slide-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .slide-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-item {
        min-width: 80px;
        padding: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .slide-features {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-item {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .feature-item i {
        font-size: 0.9rem;
    }
    
    .slide-benefits {
        gap: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
        max-width: 180px;
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .benefit-text h5 {
        font-size: 0.85rem;
    }
    
    .benefit-text p {
        font-size: 0.75rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .carousel-control-prev {
        left: 10px;
    }
    
    .carousel-control-next {
        right: 10px;
    }
    
    .carousel-indicators {
        bottom: 15px;
        gap: 6px;
    }
    
    .carousel-indicators button {
        width: 10px;
        height: 10px;
        margin: 0;
        padding: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-slider {
        height: 300px;
    }
    
    #heroCarousel {
        height: 300px;
    }
    
    #heroCarousel .carousel-inner {
        height: 300px;
    }
    
    #heroCarousel .carousel-item {
        height: 300px;
    }
    
    .slide-bg {
        height: 300px;
    }
    
    .slide-content {
        padding: 1rem 0.5rem;
    }
    
    .slide-badge {
        font-size: 0.75rem;
        padding: 0.3rem 1rem;
        margin-bottom: 1rem;
    }
    
    .slide-title {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .slide-description {
        font-size: 0.85rem;
        margin-bottom: 1.2rem;
    }
    
    .slide-stats {
        flex-direction: row;
        gap: 0.6rem;
        margin-bottom: 1.2rem;
    }
    
    .stat-item {
        min-width: auto;
        width: auto;
        max-width: none;
        margin: 0;
        padding: 0.6rem;
        flex: 1;
    }
    
    .stat-number {
        font-size: 1.3rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .slide-features {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .feature-item {
        width: auto;
        max-width: none;
        margin: 0;
        justify-content: center;
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .slide-benefits {
        flex-direction: row;
        gap: 0.5rem;
        margin-bottom: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .benefit-item {
        width: auto;
        max-width: none;
        margin: 0;
        padding: 0.6rem;
        flex: 1;
        min-width: 140px;
    }
    
    .benefit-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .benefit-text h5 {
        font-size: 0.8rem;
    }
    
    .benefit-text p {
        font-size: 0.7rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 35px;
        height: 35px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }
}