/* ============================================
   HERNIA 360 CONFERENCE WEBSITE
   Design Philosophy: Modern, Professional, Trendy
   Colors: Deep Blue (#003D7A), Red (#E63946), Cyan (#00BCD4), Orange (#FF9800)
   ============================================ */

:root {
    --primary-blue: #003D7A;
    --primary-red: #E63946;
    --primary-cyan: #00BCD4;
    --primary-orange: #FF9800;
    --light-bg: #F8F9FA;
    --white: #FFFFFF;
    --dark-text: #1A1A1A;
    --gray-text: #666666;
    --light-gray: #E8E8E8;
    --shadow: 0 10px 40px rgba(0, 61, 122, 0.1);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-text);
    background-color: var(--light-bg);
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--primary-blue);
}

p {
    line-height: 1.8;
    color: var(--gray-text);
}

/* ============================================
   NAVIGATION BAR
   ============================================ */

.navbar {
    background: linear-gradient(135deg, var(--white) 0%, rgba(248, 249, 250, 0.95) 100%) !important;
    border-bottom: 2px solid var(--light-gray);
    transition: var(--transition);
}

.navbar:hover {
    box-shadow: 0 5px 30px rgba(0, 61, 122, 0.15) !important;
}

.navbar-brand {
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: translateY(-2px);
}

.logo-container {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 61, 122, 0.3);
    animation: float 3s ease-in-out infinite;
}

.logo-circle {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    color: var(--white);
    font-weight: 800;
    font-size: 18px;
    font-family: 'Playfair Display', serif;
}

.brand-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--primary-blue);
    letter-spacing: 1px;
}

.brand-subtitle {
    font-size: 10px;
    color: var(--primary-red);
    font-weight: 600;
}

.nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
    margin: 0 10px;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan));
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.registration-nav {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan)) !important;
    color: var(--white) !important;
    border-radius: 25px;
    padding: 8px 20px !important;
    transition: var(--transition);
}

.registration-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 61, 122, 0.3);
}

/* Registration Dropdown */
.registration-dropdown {
    width: 100%;
    max-width: 600px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 61, 122, 0.2);
    padding: 0;
    margin-top: 15px;
    animation: slideDown 0.3s ease;
}

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

.registration-content {
    padding: 30px;
    background: var(--white);
    border-radius: 15px;
}

.registration-header {
    border-bottom: 3px solid var(--primary-blue);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.registration-header h5 {
    color: var(--primary-blue);
    font-size: 18px;
}

.registration-table-container {
    overflow-x: auto;
    margin-bottom: 20px;
}

.registration-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.registration-table thead {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: var(--white);
}

.registration-table th {
    padding: 12px 8px;
    text-align: center;
    font-weight: 600;
    border: none;
}

.registration-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
}

.registration-table tbody tr:hover {
    background-color: rgba(0, 188, 212, 0.1);
}

.registration-form-section {
    margin: 20px 0;
    padding: 20px;
    background: linear-gradient(135deg, rgba(0, 61, 122, 0.05), rgba(0, 188, 212, 0.05));
    border-radius: 10px;
}

.form-title {
    color: var(--primary-blue);
    font-weight: 700;
    margin-bottom: 15px;
}

.registration-form .form-group {
    margin-bottom: 12px;
}

.registration-form .form-control {
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 13px;
    transition: var(--transition);
}

.registration-form .form-control:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 0.2rem rgba(0, 61, 122, 0.1);
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    padding: 10px 20px;
    font-size: 13px;
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 61, 122, 0.3);
    color: var(--white);
}

.registration-contact {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--light-gray);
    font-size: 12px;
    color: var(--gray-text);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;

    /* Background Image */
    background: url("../../images/banner.png") center center / cover no-repeat;
}

/* Overlay to reduce dominance of image */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(244 139 18 / 80%) 0%, #0d6efde3 100%);
    z-index: 1;
}

/* Make sure content stays above overlay */
.hero-section .hero-content,
.hero-section .container,
.hero-section .row {
    position: relative;
    z-index: 2;
}


.hero-background {
    position: absolute;
    top: 0;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 188, 212, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-background::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 152, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite reverse;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 20px;
    animation: slideInLeft 0.8s ease;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 80px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    animation: slideInLeft 0.8s ease 0.2s both;
}

.title-word {
    color: var(--primary-blue);
    display: block;
}

.title-number {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: 28px;
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 15px;
    animation: slideInLeft 0.8s ease 0.4s both;
}

.hero-description {
    font-size: 16px;
    color: var(--gray-text);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
    animation: slideInLeft 0.8s ease 0.6s both;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
    animation: slideInLeft 0.8s ease 0.8s both;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 15px;
    color: var(--dark-text);
    font-weight: 500;
}

.detail-item i {
    color: var(--primary-blue);
    font-size: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 61, 122, 0.1);
    border-radius: 50%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    animation: slideInLeft 0.8s ease 1s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border: none;
    color: var(--white);
    font-weight: 600;
    border-radius: 50px;
    padding: 15px 40px;
    transition: var(--transition);
    font-size: 15px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 61, 122, 0.3);
    color: var(--white);
}

.btn-outline-primary {
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    font-weight: 600;
    border-radius: 50px;
    padding: 13px 38px;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-3px);
}

.btn-register-main {
    padding: 15px 40px;
}

/* Hero Image Section */
.hero-image {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-svg {
    width: 100%;
    height: 100%;
    max-width: 400px;
    animation: rotate 20s linear infinite;
}

.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 61, 122, 0.15);
    animation: float 3s ease-in-out infinite;
    border: 2px solid var(--light-gray);
}

.card-1 {
    top: 50px;
    left: 20px;
    background: linear-gradient(135deg, rgba(0, 61, 122, 0.1), rgba(0, 188, 212, 0.1));
    animation-delay: 0s;
}

.card-2 {
    bottom: 100px;
    left: 50px;
    background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(230, 57, 70, 0.1));
    animation-delay: 1s;
}

.card-3 {
    top: 200px;
    right: 30px;
    background: linear-gradient(135deg, rgba(0, 188, 212, 0.1), rgba(255, 152, 0, 0.1));
    animation-delay: 2s;
}

.card-inner {
    text-align: center;
}

.card-inner i {
    font-size: 32px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    display: block;
}

.card-inner p {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    animation: bounce 2s ease-in-out infinite;
    cursor: pointer;
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--primary-blue);
    font-weight: 600;
}

.scroll-indicator i {
    color: var(--primary-blue);
    font-size: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

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

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

/* ============================================
   SECTION STYLING
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 50px;
    animation: slideUp 0.8s ease;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.title-underline {
    width: 80px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan), var(--primary-orange));
    margin: 0 auto;
    border-radius: 10px;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--white);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light-gray), transparent);
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 61, 122, 0.15);
    animation: slideUp 0.8s ease;
}

.about-image img {
    width: 100%;
    height: auto;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

.image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-red), var(--primary-orange));
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

.about-content {
    animation: slideUp 0.8s ease 0.2s both;
}

.about-text {
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 20px;
    color: var(--gray-text);
}

.about-text.highlight {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 16px;
}

.about-signature {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.about-signature p {
    margin: 5px 0;
}

/* ============================================
   COMMITTEE SECTION
   ============================================ */

.committee-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.committee-group {
    margin-bottom: 60px;
}

.committee-subtitle {
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.committee-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 10px;
}

.member-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 61, 122, 0.1);
    transition: var(--transition);
    animation: slideUp 0.8s ease;
    border: 2px solid transparent;
}

.member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 61, 122, 0.2);
    border-color: var(--primary-cyan);
}

.member-card.featured {
    border: 2px solid var(--primary-orange);
}

.member-image {
    width: 100%;
    height: auto;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 61, 122, 0.8), rgba(0, 188, 212, 0.8));
    color: var(--white);
    font-size: 60px;
    transition: var(--transition);
}

.member-card:hover .image-placeholder {
    transform: scale(1.1);
}

.member-info {
    padding: 20px;
    text-align: center;
}

.member-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 8px;
}

.member-title {
    font-size: 13px;
    color: var(--gray-text);
    font-weight: 500;
}

/* ============================================
   REGISTRATION TARIFF SECTION
   ============================================ */

.registration-section {
    background: var(--white);
}

.tariff-table-wrapper {
    overflow-x: auto;
    margin-bottom: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 61, 122, 0.1);
    animation: slideUp 0.8s ease;
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
}

.tariff-table thead {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    color: var(--white);
}

.tariff-table th {
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
}

.tariff-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition);
}

.tariff-table tbody tr:hover {
    background: rgba(0, 188, 212, 0.05);
}

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

.category-name {
    font-weight: 700;
    color: var(--primary-blue);
    text-align: left;
}

.price {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-red);
}

.gst {
    display: block;
    font-size: 12px;
    color: var(--gray-text);
    margin-top: 5px;
}

.early-bird-col {
    background: rgba(0, 188, 212, 0.05);
}

.slot-col {
    background: rgba(255, 152, 0, 0.05);
}

.onspot-col {
    background: rgba(230, 57, 70, 0.05);
}

/* Account Details & Contact */
.account-details,
.contact-queries {
    background: linear-gradient(135deg, var(--light-bg), var(--white));
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 61, 122, 0.1);
    animation: slideUp 0.8s ease;
    border: 2px solid var(--light-gray);
}

.details-title {
    color: var(--primary-blue);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(180deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 2px;
}

.details-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--light-gray);
}

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

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

.detail-value {
    color: var(--gray-text);
    font-family: 'Courier New', monospace;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-label {
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-blue);
}

.contact-phone {
    font-size: 16px;
    color: var(--gray-text);
}

.contact-phone i {
    color: var(--primary-red);
    margin-right: 8px;
}

.contact-phone a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-phone a:hover {
    color: var(--primary-red);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.contact-card {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 61, 122, 0.1);
    transition: var(--transition);
    animation: slideUp 0.8s ease;
    border: 2px solid transparent;
}

.contact-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-cyan);
    box-shadow: 0 20px 50px rgba(0, 61, 122, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    color: var(--white);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(10deg);
}

.contact-card h5 {
    color: var(--primary-blue);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-card p {
    font-size: 14px;
    color: var(--gray-text);
    margin: 0;
}

.contact-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-card a:hover {
    color: var(--primary-red);
}

/* ============================================
   FOOTER
   ============================================ */

.footer-section {
    background: linear-gradient(135deg, var(--primary-blue), #002a5c);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-brand h5 {
    color: var(--white);
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 10px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0;
}

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-title {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary-cyan);
    transform: translateX(5px);
}

.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline-primary {
        width: 100%;
    }

    .section-title {
        font-size: 36px;
    }

    .hero-image {
        height: 300px;
        margin-top: 30px;
    }

    .tariff-table {
        font-size: 12px;
    }

    .tariff-table th,
    .tariff-table td {
        padding: 12px 8px;
    }

    .registration-dropdown {
        max-width: 95vw;
    }

    .registration-table {
        font-size: 11px;
    }

    .registration-table th,
    .registration-table td {
        padding: 8px 4px;
    }

    .member-card {
        margin-bottom: 20px;
    }

    .committee-subtitle {
        font-size: 22px;
    }

    .about-text {
        font-size: 14px;
    }

    .nav-link {
        margin: 5px 0;
    }

    .navbar-brand {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 14px;
    }

    .section-title {
        font-size: 28px;
    }

    .detail-item {
        font-size: 13px;
    }

    .hero-details {
        gap: 10px;
    }

    .contact-card {
        padding: 20px;
    }

    .account-details,
    .contact-queries {
        padding: 20px;
    }

    .registration-content {
        padding: 20px;
    }

    .tariff-table {
        font-size: 10px;
    }

    .tariff-table th,
    .tariff-table td {
        padding: 10px 4px;
    }

    .category-name {
        text-align: center;
    }

    .price {
        font-size: 14px;
    }

    .gst {
        font-size: 10px;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.mt-5 {
    margin-top: 3rem !important;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

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

/* Selection styling */
::selection {
    background: var(--primary-blue);
    color: var(--white);
}

::-moz-selection {
    background: var(--primary-blue);
    color: var(--white);
}


/* Compact Venue Section Styles */
.venue-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
}

.venue-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 61, 122, 0.1);
    position: relative;
    overflow: hidden;
}

.venue-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, #003D7A, #00BCD4);
}

.venue-main-info {
    padding-right: 2rem;
}

.venue-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: #003D7A;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.venue-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.venue-location i {
    color: #00BCD4;
    font-size: 1.2rem;
}

.venue-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 15px;
    background: #f8f9ff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #eef2ff;
    transform: translateX(5px);
}

.highlight-item i {
    width: 40px;
    height: 40px;
    background: #003D7A;
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-item span {
    color: #555;
    font-weight: 500;
}

.venue-actions .btn {
    padding: 15px 20px;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.venue-actions .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.btn-primary {
    background: linear-gradient(135deg, #003D7A, #0056b3);
    border: none;
}

.btn-outline-primary {
    color: #003D7A;
    border: 2px solid #003D7A;
}

.btn-outline-primary:hover {
    background: #003D7A;
    color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .venue-card {
        padding: 30px;
    }
    
    .venue-name {
        font-size: 1.8rem;
    }
    
    .venue-main-info {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .venue-card {
        padding: 25px;
    }
    
    .venue-name {
        font-size: 1.6rem;
    }
    
    .highlight-item {
        padding: 8px 12px;
    }
    
    .highlight-item i {
        width: 35px;
        height: 35px;
    }
    
    .venue-actions .btn {
        padding: 12px 15px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .venue-card {
        padding: 20px;
    }
    
    .venue-name {
        font-size: 1.5rem;
    }
    
    .venue-location {
        font-size: 1rem;
    }
    
    .highlight-item {
        font-size: 0.9rem;
    }
    
    .highlight-item span {
        font-size: 0.9rem;
    }
}