@import url("variables.css");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

/* ========================================
   404-page - START
   ======================================== */
.not-found-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    text-align: center;
    padding: 2rem;

    a {
        margin-top: 1.5rem;
        display: inline-block;
        padding: 1rem 2rem;
        background: var(--primary-light);
        color: var(--text-white);
        border-radius: 8px;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
    }
}

/* ========================================
   INDEX PAGE  - START
   ======================================== */

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

.section-description {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.hero {
    position: relative;
    min-height: 100vh;
    background: url('../images/bck5.png') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 22, 40, 0.3);
    z-index: 0;
}

.hero-content,
.hero-background-shapes {
    position: relative;
    z-index: 1;
}

/* Animated Background Shapes */
.hero-background-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.hero-background-shapes::before,
.hero-background-shapes::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.hero-background-shapes::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 131, 238, 0.3) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation-delay: 0s;
}

.hero-background-shapes::after {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(44, 69, 99, 0.4) 0%, transparent 70%);
    bottom: -15%;
    right: -10%;
    animation-delay: -10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--text-white);
    text-align: center;
    animation: fadeInUp 1s ease-out;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(30, 131, 238, 0.15);
    border: 2px solid rgba(30, 131, 238, 0.3);
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInDown 1s ease-out 0.3s both;
}

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

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge i {
    color: #ffd700;
    font-size: 1.1rem;
    animation: spin 3s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Hero Title */
.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    letter-spacing: -2px;
    line-height: 1.1;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-icon-wrapper {
    display: inline-block;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-icon-wrapper i {
    font-size: 4rem;
    background: linear-gradient(135deg, #1e83ee 0%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 30px rgba(30, 131, 238, 0.6));
    margin-right: 1rem;
}

.hero-text-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e0f2fe 50%, #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
    display: inline-block;
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    opacity: 0.95;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: #e0f2fe;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 3rem;
    opacity: 0.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #cbd5e1;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.btn-hero {
    position: relative;
    overflow: hidden;
    padding: 1.4rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--text-white);
    text-decoration: none;
}

.btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary {
    background: linear-gradient(135deg, #1e83ee 0%, #1a73d8 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 131, 238, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-primary:hover .btn-shine {
    left: 100%;
}

.btn-secondary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(40, 167, 69, 0.5);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover .btn-shine {
    left: 100%;
}

.btn-primary:active,
.btn-secondary:active {
    transform: translateY(-2px);
}

/* Hero Features */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

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

.hero-feature-item i {
    color: #28a745;
    font-size: 1.3rem;
    filter: drop-shadow(0 0 10px rgba(40, 167, 69, 0.5));
}


.services-section {
    padding: 6rem 0;
    background: var(--gradient-services);
}

.services-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

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

.service-item {
    background: var(--text-white);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-small);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 131, 238, 0.1), transparent);
    transition: left 0.5s ease;
}

.service-item:hover::before {
    left: 100%;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(30, 131, 238, 0.2);
    border-color: var(--primary-blue);
}


.service-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: var(--gradient-icon);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: transform 0.3s ease;
}

.service-item:hover .service-icon {
    transform: scale(1.2) rotate(5deg);
}

.service-item h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-item p {
    color: var(--text-gray);
    line-height: 1.6;
}


.gallery-section {
    padding: 6rem 0;
    background: var(--text-white);
}

.gallery-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-small);
    cursor: pointer;
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 32, 39, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
    opacity: 1;
}

.gallery-item img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

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

/* Footer */
.footer_section {
    /* margin-top: 2rem; */
    font-size: 0.9rem;
    color: var(--text-gray);
    text-align: center;
    width: 100%;
    padding: 2rem 0;
}

/* ========================================
   INDEX PAGE STYLING - END
   ======================================== */

/* ========================================
   STATISTICS SECTION - START
   ======================================== */

.stats-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1e83ee 0%, #1a73d8 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.5;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

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

/* ========================================
   WHY CHOOSE US / FEATURES SECTION - START
   ======================================== */

.features-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.features-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    font-weight: 800;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.features-section .section-description {
    text-align: center;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(5deg);
    animation: none;
}

.feature-item h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.feature-item:hover h4 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-item p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* ========================================
   TESTIMONIALS SECTION - START
   ======================================== */

.testimonials-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.testimonials-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

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

.testimonial-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-small);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid var(--bg-light);
}

.author-avatar {
    font-size: 3rem;
    color: var(--primary-blue);
}

.author-name {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.author-rating {
    color: #ffc107;
    font-size: 0.9rem;
}

.author-rating i {
    margin-right: 2px;
}

/* ========================================
   OPENING HOURS & LOCATION SECTION - START
   ======================================== */

.hours-location-section {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.hours-location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    align-items: start;
}

.hours-card,
.map-card {
    background: var(--text-white);
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hours-card::before,
.map-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1e83ee 0%, #28a745 100%);
}

.hours-card:hover,
.map-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.section-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1e83ee 0%, #1a73d8 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px rgba(30, 131, 238, 0.3);
}

.section-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.hours-card h2,
.map-card h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Opening Hours List */
.hours-list {
    margin: 2rem 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-blue);
    transition: all 0.3s ease;
}

.hours-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.hours-item.closed {
    border-left-color: var(--accent-danger);
    opacity: 0.7;
}

.hours-item .day {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.05rem;
}

.hours-item .day i {
    color: var(--primary-blue);
    font-size: 1.1rem;
}

.hours-item .time {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1.1rem;
    background: var(--text-white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.hours-item.closed .time {
    color: var(--accent-danger);
}

/* Contact Info */
.contact-info {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-light);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.contact-item i {
    width: 30px;
    height: 30px;
    background-color: #1e83ee;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-blue);
}

/* Map Container */
.map-container {
    margin: 2rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 400px;
}

.map-directions {
    text-align: center;
    margin-top: 1.5rem;
}

.btn-directions {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #1e83ee 0%, #1a73d8 100%);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(30, 131, 238, 0.3);
}

.btn-directions:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 131, 238, 0.5);
}

.btn-directions i {
    font-size: 1.2rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hours-location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hours-location-section {
        padding: 4rem 0;
    }

    .hours-card,
    .map-card {
        padding: 2rem;
    }

    .hours-card h2,
    .map-card h2 {
        font-size: 1.8rem;
    }

    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1rem;
    }

    .hours-item .time {
        align-self: flex-end;
    }

    .map-container iframe {
        min-height: 300px;
    }

    .btn-directions {
        width: 100%;
        justify-content: center;
    }
}

/* ========================================
   CTA SECTION - START
   ======================================== */

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f2027 0%, #2c5364 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 131, 238, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 3rem;
    color: var(--text-white);
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-primary,
.btn-cta-secondary {
    display: inline-block;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: var(--primary-blue);
    color: var(--text-white);
}

.btn-cta-primary:hover {
    background: #1a73d8;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(30, 131, 238, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--text-white);
    border-color: var(--text-white);
}

.btn-cta-secondary:hover {
    background: var(--text-white);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.btn-cta-primary i,
.btn-cta-secondary i {
    margin-right: 0.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .features-section h2 {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        padding: 3rem 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .testimonials-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-content p {
        font-size: 1.1rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        max-width: 300px;
        gap: 2rem;
    }

    .feature-item {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   WHY CHOOSE US / FEATURES SECTION - END
   ======================================== */



/* ========================================
   Booking Page Styles
   ======================================== */

.booking-page {
    max-width: 700px;
    margin: 4rem auto;
    padding: 2rem;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.booking-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}


.booking-form {
    background: var(--text-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-small);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 1px solid #d0d4d9;
    border-radius: 5px;
    font-size: 1.05rem;
    box-sizing: border-box;
    transition: all 0.3s ease;
    font-weight: 500;
    color: var(--text-dark);
    background-color: #f8f9fa;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: var(--text-white);
    box-shadow: 0 0 0 4px rgba(30, 131, 238, 0.15), inset 0 1px 3px rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: rgba(0, 0, 0, 0.45);
    font-weight: 400;
}

select.form-control {
    background-color: var(--text-white);
}

textarea.form-control {
    resize: vertical;
}

.booking-submit-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: linear-gradient(135deg, #1e83ee 0%, #1a73d8 100%);
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(30, 131, 238, 0.3);
    border: 2px solid transparent;
}

.booking-submit-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(30, 131, 238, 0.5);
}

.booking-submit-btn:active {
    transform: translateY(-2px);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-light);
    color: var(--text-white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: scale(1.02);
    background: var(--primary-dark);
    opacity: 0.95;
}

/* ======================================== 
   End Booking Page Styles
   ======================================== */

/* ========================================
   LOGIN/SIGNUP STYLING
   ======================================== */

.auth-page {
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    background: var(--gradient-services);
}

.auth-container {
    max-width: 450px;
    width: 100%;
    background: var(--text-white);
    border-radius: 12px;
    padding: 3rem 2.5rem;
    box-shadow: var(--shadow-large);
}

.auth-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.auth-header h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.auth-header p {
    font-size: 1rem;
    color: var(--text-gray);
}

.auth-form .form-group {
    margin-bottom: 1.5rem;
}

.auth-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.btn-auth {
    width: 100%;
    padding: 1rem;
    background: var(--primary-light);
    color: var(--text-white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 0.5rem;
}



.auth-link {
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.auth-link a {
    color: var(--primary-light);
    font-weight: 600;
    text-decoration: none;
}

.auth-link a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

@media (max-width: 576px) {
    .auth-container {
        padding: 2rem 1.5rem;
    }

    .auth-header h1 {
        font-size: 1.8rem;
    }
}

/* ======================================== 
   END Login/signup PAGES STYLING
   ======================================== */


/* ========================================
   Responsive Styles
   ======================================== */

@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        padding: 2rem 0;
    }

    .hero-content {
        padding: 2rem 1rem;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-title {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .hero-icon-wrapper i {
        font-size: 2.5rem;
        margin-right: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn-hero {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .hero-feature-item {
        font-size: 1rem;
        padding: 0.6rem 1.2rem;
    }

    .hero-background-shapes::before {
        width: 300px;
        height: 300px;
    }

    .hero-background-shapes::after {
        width: 350px;
        height: 350px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .services-section h2,
    .gallery-section h2 {
        font-size: 2rem;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 220px;
    }

    .page-container {
        padding: 0 15px;
    }

    .booking-page {
        padding: 1rem;
    }
}

/* ========================================
   ADMIN BOOKINGS PAGE STYLING - START
   ======================================== */

.admin-bookings-page,
.admin-users-page {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 0 20px;
}


.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.admin-header h2 {
    color: var(--primary-dark);
    font-size: 2rem;
    font-weight: 700;
}


.btn-back {
    padding: 0.75rem 1.5rem;
    background: var(--primary-light);
    color: var(--text-white);
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-back:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.bookings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 2rem;
}


.booking-card {
    background: var(--text-white);
    border-radius: 12px;
    box-shadow: var(--shadow-large);
    overflow: hidden;
    cursor: pointer;
}


.booking-card-header {
    background: var(--primary-dark);
    color: var(--text-white);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.booking-card-header h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 700;
}


.booking-details {
    padding: 1.5rem;
}

.detail-row {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--bg-lighter);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 600;
    color: var(--primary-dark);
}

.detail-value {
    color: var(--text-dark);
}

/* Phone and Email Links */
.phone-link,
.email-link {
    color: var(--primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover,
.email-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}


.booking-message {
    padding: 1.5rem;
    background: var(--bg-light);
    border-top: 2px solid var(--bg-lighter);
}

.booking-message h4 {
    margin: 0 0 0.75rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-dark);
}

.booking-message p {
    margin: 0;
    color: var(--text-dark);
    line-height: 1.6;
    white-space: pre-wrap;
    word-break: break-word;
}


.status-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-pending {
    background: var(--accent-pending);
    color: var(--text-gray);
}

.status-confirmed {
    background: var(--primary-blue);
    color: var(--text-white);
    border-color: var(--primary-blue);
    border: solid 2px var(--primary-blue);
}

.status-completed {
    background: var(--accent-success);
    color: var(--accent-gold);
}

.status-cancelled {
    background: var(--accent-danger);
    color: var(--text-white);
}

.cancelled-booking {
    opacity: 0.7;
}


.booking-actions {
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
    background: var(--bg-lighter);
}

.btn-action {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: 2px solid;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    background: var(--text-white);
    font-weight: 600;
    text-align: center;
}

.btn-confirm {
    border-color: var(--accent-success);
    color: var(--accent-success);
}

.btn-confirm:hover {
    background: var(--accent-success);
    color: var(--text-white);
}

.btn-complete {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

.btn-complete:hover {
    background: var(--primary-light);
    color: var(--text-white);
}

.btn-delete {
    border-color: var(--accent-danger);
    color: var(--accent-danger);
}

.btn-delete:hover {
    background: var(--accent-danger);
    color: var(--text-white);
}


/* ========================================
   Responsive Design for Admin Bookings
   ======================================== */

@media (max-width: 1200px) {
    .bookings-grid {
        grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .admin-bookings-page {
        padding: 0 15px;
        margin: 1rem auto;
    }

    .admin-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-header h2 {
        font-size: 1.6rem;
    }

    .btn-back {
        width: 100%;
        text-align: center;
    }

    .bookings-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .booking-card-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .detail-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
    }

    .detail-label {
        font-size: 0.9rem;
    }

    .detail-value {
        font-size: 0.95rem;
    }

    .booking-actions {
        flex-direction: column;
    }

    .btn-action {
        width: 100%;
    }

    .booking-card-header h3 {
        font-size: 1.3rem;
    }

    .status-badge {
        font-size: 0.75rem;
        padding: 0.3rem 0.8rem;
    }
}

/* ========================================
   END ADMIN BOOKINGS PAGE STYLING
   ======================================== */

/* ========================================
   ADMIN USERS TABLE STYLING
   ======================================== */

.users-table-container {
    background: var(--text-white);
    border-radius: 12px;
    box-shadow: var(--shadow-large);
    overflow: hidden;
}

.users-table {
    width: 100%;
    border-collapse: collapse;
}

.users-table thead {
    background: var(--primary-dark);
    color: var(--text-white);
}

.users-table thead th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 1rem;
}

.users-table tbody tr {
    border-bottom: 1px solid var(--bg-lighter);
    transition: background 0.2s ease;
}

.users-table tbody tr:hover {
    background: var(--bg-light);
}

.users-table tbody tr:last-child {
    border-bottom: none;
}

.users-table tbody td {
    padding: 1rem;
    color: var(--text-dark);
}

.users-table tbody td form {
    margin: 0;
}

.users-table .btn-delete {
    padding: 0.5rem 1rem;
    background: var(--accent-danger);
    color: var(--text-white);
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}


@media (max-width: 768px) {
    .users-table-container {
        padding: 1rem;
        border-radius: 8px;
    }

    .users-table {
        display: block;
        width: 100%;
    }

    .users-table thead {
        display: none;
    }

    .users-table tbody {
        display: grid;
        gap: 1.5rem;
    }

    .users-table tbody tr {
        display: block;
        background: var(--bg-light);
        border: 2px solid var(--bg-lighter);
        border-radius: 5px;
        padding: 1.25rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
    }

    .users-table tbody tr:hover {
        background: var(--bg-lighter);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
        transform: translateY(-2px);
    }

    .users-table tbody td {
        display: grid;
        grid-template-columns: auto 1fr;
        gap: 0.75rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
        align-items: start;
        word-break: break-word;
        overflow-wrap: break-word;
    }

    .users-table tbody td:last-child {
        border-bottom: none;
        margin-top: 0.75rem;
        padding-top: 1rem;
        border-top: 2px solid var(--bg-lighter);
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .users-table tbody td::before {
        content: attr(data-label);
        font-weight: 700;
        color: var(--text-dark);
        font-size: 0.9rem;
        white-space: nowrap;
        padding-right: 0.5rem;
    }

    .users-table tbody td:last-child::before {
        margin-bottom: 0.25rem;
    }

    .users-table .btn-delete {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        border-radius: 5px;
        font-weight: 700;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(220, 53, 69, 0.3);
    }

    .users-table .btn-delete:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(220, 53, 69, 0.4);
    }

    .users-table .btn-delete:active {
        transform: translateY(0);
    }
}

/* ========================================
   END ADMIN USERS TABLE STYLING
   ======================================== */

/* ========================================
   USER PROFILE PAGE STYLING - START
   ======================================== */

.user-profile-page {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 20px;
    min-height: 70vh;
}


.profile-container {
    margin-bottom: 3rem;
}

.profile-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.profile-header h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.welcome-text {
    font-size: 1.3rem;
    color: var(--text-gray);
}

.welcome-text strong {
    color: var(--primary-dark);
}


.profile-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.profile-actions form {
    margin: 0;
}

.btn-logout,
.btn-delete-account {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-logout {
    background: var(--primary-light);
    color: var(--text-white);
}

.btn-logout:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-small);
}

.btn-delete-account {
    background: var(--accent-danger);
    color: var(--text-white);
}



.user-bookings-section {
    margin-top: 3rem;
}

.user-bookings-section h2 {
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
    text-align: center;
    font-weight: 800;
}


.no-bookings {
    text-align: center;
    padding: 5rem 3rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 16px;
    margin-top: 3rem;
    box-shadow: var(--shadow-small);
}

.no-bookings p {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-book-now {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--primary-light);
    color: var(--text-white);
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: 700;
}




@media (max-width: 768px) {
    .profile-header h1 {
        font-size: 2rem;
    }

    .welcome-text {
        font-size: 1.1rem;
    }

    .profile-actions {
        flex-direction: column;
        gap: 1rem;
    }

    .btn-logout,
    .btn-delete-account {
        width: 100%;
        justify-content: center;
    }

    .user-bookings-section h2 {
        font-size: 1.8rem;
    }

    .no-bookings {
        padding: 3rem 2rem;
    }
}

.delete-account-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bg-lighter);
    display: flex;
    justify-content: flex-end;
}

.delete-account-section form {
    margin: 0;
}

.btn-delete-account {
    padding: 0.8rem 2rem;
    background: var(--accent-danger);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}



.btn-delete-account i {
    font-size: 0.95rem;
}

.btn-cancel-booking {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--accent-danger);
    color: var(--text-white);
    border: 2px solid var(--accent-danger);
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-cancel-booking:hover {
    background: var(--text-white);
    color: var(--accent-danger);
    transform: scale(1.02);
}

.booking-notice {
    padding: 1rem;
    background: var(--bg-light);
    border-left: 4px solid var(--primary-blue);
    border-radius: 4px;
    margin-top: 15px;
}

.booking-notice p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.booking-notice strong {
    color: var(--primary-dark);
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--text-white);
    border-radius: 12px;
    box-shadow: var(--shadow-small);
    margin-top: 2rem;
}

.empty-state-icon {
    font-size: 4rem;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.empty-state p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin: 0;
}

@media (max-width: 768px) {
    .delete-account-section {
        justify-content: center;
    }
}

/* ========================================
   END USER PROFILE PAGE STYLING
   ======================================== */


/* ========================================
   ADMIN PROFILE PAGE STYLING - START
   ======================================== */

.admin-profile-page {
    max-width: 800px;
    margin: 3rem auto;
    padding: 0 20px;
    min-height: 70vh;
}

.admin-profile-container {
    background: var(--text-white);
    border-radius: 16px;
    padding: 3rem 2rem;
    box-shadow: var(--shadow-large);
}

.admin-profile-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--bg-lighter);
}

.admin-profile-header h1 {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.admin-profile-header .welcome-text {
    font-size: 1.3rem;
    color: var(--text-gray);
}

.admin-profile-header .welcome-text strong {
    color: var(--primary-dark);
}

/* Admin Navigation */
.admin-navigation {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.admin-nav-link {
    display: block;
    padding: 1.5rem 2rem;
    background: var(--primary-light);
    color: var(--text-white);
    border-radius: 12px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
}

.admin-nav-link:hover {
    background: var(--primary-dark);
}

/* Admin Actions */
.admin-actions {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--bg-lighter);
}

.admin-actions form {
    margin: 0;
}

.btn-admin-logout {
    padding: 1rem 3rem;
    background: var(--primary-light);
    color: var(--text-white);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.1s ease;
}

.btn-admin-logout:hover {
    background: var(--primary-dark);
}


@media (max-width: 768px) {
    .admin-profile-container {
        padding: 2rem 1.5rem;
    }

    .admin-profile-header h1 {
        font-size: 2rem;
    }

    .admin-navigation {
        grid-template-columns: 1fr;
    }

    .btn-admin-logout {
        width: 100%;
    }
}

/* ========================================
   END ADMIN PROFILE PAGE STYLING
   ======================================== */