:root {
    --gold-primary: #C5A059;
    --gold-light: #E9D022;
    --charcoal: #1A1A1A;
    --dark-grey: #333333;
    --white: #FFFFFF;
    --gold-gradient: linear-gradient(135deg, #C5A059 0%, #F1D27F 50%, #C5A059 100%);
}

body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: var(--dark-grey);
    line-height: 1.6;
}

/* Navigation Container */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1px 80px;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Logo Styling matching the uploaded logo */
.logo {
    font-weight: 800;
    font-size: 24px;
    text-decoration: none;
    color: #1A1A1A; 
    text-transform: none; 
}

.logo span {
    background: linear-gradient(135deg, #C5A059 0%, #F1D27F 50%, #C5A059 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Nav Links Styling */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.nav-links a:hover {
    color: #C5A059; 
}

/* 'Join Us' CTA Button in Navbar */
.nav-links a.join-btn {
    background: linear-gradient(135deg, #C5A059 0%, #F1D27F 50%, #C5A059 100%);
    color: #1A1A1A;
    padding: 10px 20px;
    font-weight: 700;
    border-radius: 25px;
}

.nav-links a.join-btn:hover {
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.4);
    transform: translateY(-1px);
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('hero-bg.jpg');
    background-size: cover;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 5%;
    color: var(--white);
   
}

/* Form Card */
.form-card {
    background: var(--white);
    color: var(--charcoal);
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.form-header {
    background: var(--charcoal);
    color: var(--gold-light);
    text-align: center;
    font-weight: bold;
    letter-spacing: 1px;

}

/* Tighten the card body */
.form-body {
    padding: 10px 20px; 
}

/* Reduce space between label and input */
.form-body label {
    margin-bottom: 2px;
    display: block;
}

/* Shrink the input fields */
.form-body select, 
.form-body input, 
.form-body textarea {
    padding: 8px 10px;
    margin-bottom: 8px; 
    height: auto;
    font-family: 'Montserrat', sans-serif;
}

input, select, textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.submit-btn {
    background: var(--gold-gradient);
    color: var(--charcoal);
    border: none;
    padding: 15px;
    width: 100%;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    transition: 0.3s;
}

.submit-btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
}

/* Hero Container - Split Layout */
.hero-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    width: 100%;
 
}

/* Location Tags with Gold Border */
.loc-tags { display: flex; gap: 10px; margin: 20px 0; }
.loc-tag { 
    background: rgba(255, 255, 255, 0.1); 
    border: 1px solid var(--gold-primary); 
    color: var(--white); 
    padding: 8px 15px; 
    border-radius: 4px; 
    font-weight: bold; 
    font-size: 14px; 
}

/* Stats Row - Glass Effect */
.stats-row { 
    display: flex; 
    gap: 20px; 
    margin-top: 40px; 
}
.stat-box { 
    background: rgba(26, 26, 26, 0.6); 
    border-left: 4px solid var(--gold-primary); 
    padding: 15px 25px; 
    /* flex: 1;  */
    backdrop-filter: blur(5px);
}
.stat-box h2 { 
    margin: 0; 
    font-size: 28px; 
    color: var(--gold-light); 
}
.stat-box span { 
    font-size: 12px; 
    text-transform: uppercase; 
    letter-spacing: 1px; 
    color: #ccc; 
}

/* Modern Inquiry Card */
.form-card { 
    background: #fff; 
    width: 500px; 
    border-radius: 15px; 
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    overflow: hidden;
}
.form-header { 
    background: var(--gold-gradient); 
    color: var(--charcoal); 
    text-align: center; 
    font-weight: 800; 
    text-transform: uppercase;
}

/* Input focus state for gold theme */
input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 5px rgba(197, 160, 89, 0.3);
}

/* About Section Base */
.about-section {
    padding: 80px 5%;
    background-color: #ffffff;
    text-align: center;
}

/* Gold Theme Section Header */
.section-header-box {
    background: var(--charcoal);
    color: var(--gold-primary);
    display: inline-block;
    padding: 12px 45px;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
}

/* Image Wrapper with Gold Text */
.about-img-container {
    text-align: center;
    flex: 1;
}

.about-img-container img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.coaching-title {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 38px;
    font-weight: 900;
    margin-top: 20px;
    text-transform: uppercase;
}

/* Text Content */
.about-content {
    flex: 1.2;
}

.about-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 25px;
}

.about-content p {
    color: #555;
    line-height: 1.8;
    font-size: 18px;
}

/* Responsive fix */
@media (max-width: 992px) {
    .about-flex { flex-direction: column; text-align: center; gap: 40px; }
    .about-content h2 { font-size: 32px; }
}

/* Services Section Base */
.services-section { 
    padding: 80px 5%; 
    background: #fdfdfd; 
    text-align: center; 
}

.services-grid { 
    display: flex; 
    justify-content: center; 
    gap: 40px; 
    flex-wrap: wrap; 
    margin-top: 50px;
}

.service-column {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
}

/* Gold Theme Numbered Circles */
.circle { 
    width: 110px; 
    height: 110px; 
    border-radius: 50%; 
    border: 3px dashed var(--charcoal); 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 50px; 
    font-weight: 900; 
    color: white; 
    margin: 0 auto 25px; 
    transition: transform 0.3s ease;
}

/* Brand Color Variations */
.c1 { background: var(--gold-primary); }
.c2 { background: #5D4B33 }     
.c3 { background: #B28D42; }             
.c4 { background: #5D4B33; }            

.service-column h3 {
    font-size: 20px;
    color: var(--charcoal);
    margin-bottom: 20px;
    height: 50px; 
    display: flex;
    align-items: center;
    justify-content: center;
}

/* List Styling */
.list-item { 
    list-style: none; 
    padding: 0; 
    display: inline-block; 
    text-align: left;
}

.list-item li { 
    font-size: 16px; 
    margin-bottom: 12px; 
    font-weight: 600; 
    display: flex; 
    align-items: center; 
    color: #444;
}

.icon-cap { 
    color: var(--gold-primary); 
    margin-right: 12px; 
    font-size: 14px; 
}

.service-column:hover .circle {
    transform: rotate(15deg) scale(1.1);
}

:root {
    --gold-primary: #C5A059;
    --gold-light: #F1D27F;
    --charcoal: #1A1A1A;    
    --off-white: #F9F9F9;
    --gold-gradient: linear-gradient(135deg, #C5A059 0%, #F1D27F 50%, #C5A059 100%);
}

.section-header-box {
    background: var(--charcoal);
    color: var(--gold-primary);
    display: inline-block; 
    padding: 12px 45px;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 auto 50px auto;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
}
.features-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 30px; 
    padding: 60px 5%; 
}

.feature-card { 
    background: white; 
    padding: 40px 30px; 
    border-radius: 8px; 
    text-align: center; 
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); 
    transition: transform 0.3s ease;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--gold-primary);
}

.feature-card h3 {
    color: var(--charcoal);
    margin: 20px 0 15px;
    font-size: 20px;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 45px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 5%;
    background-color: #fdfdfd;
    text-align: center;
}

.testimonial-wrapper {
    display: flex;
    justify-content: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    flex-wrap: wrap;
}

.testimonial-item {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

/* Speech Bubble with Gold Accents */
.testimonial-bubble {
    background: white;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    border-top: 3px solid var(--gold-primary);
}

.testimonial-bubble::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 30px;
    border-width: 15px 15px 0 0;
    border-style: solid;
    border-color: white transparent transparent transparent;
}

.testimonial-user {
    display: flex;
    align-items: center;
    margin-top: 25px;
    padding-left: 10px;
}

.user-img {
    width: 50px;
    height: 50px;
    background: var(--charcoal);
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-light);
    font-size: 20px;
}

.stars {
    color: var(--gold-primary);
    font-size: 14px;
    margin-top: 5px;
}

/* Google Rating Badge */
.google-rating-container {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.google-card {
    background: white;
    display: inline-flex;
    align-items: center;
    padding: 30px 50px;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    gap: 40px;
}

.google-logo { width: 100px; }

.rating-score-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #eee;
    padding: 15px 30px;
    border-radius: 4px;
}

.rating-number {
    font-size: 42px;
    font-weight: 900;
    color: var(--charcoal);
}

/* Main Footer Styling */
.main-footer {
    background-color: var(--charcoal); 
    color: #ffffff;
    padding: 80px 0 40px;
    font-size: 15px;
    margin-top: 50px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 5%;
}

.footer-col {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

/* Gold Accents for Footer Headers */
.footer-col h4 {
    color: var(--gold-primary);
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    background: var(--gold-gradient);
    height: 2px;
    width: 40px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
    color: #bbb;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

/* Footer Bottom Bar */
.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid #333;
    margin-top: 50px;
    font-size: 13px;
    color: #777;
}

/* Floating Gold Enquiry Button */
.floating-enquire-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--gold-gradient);
    color: var(--charcoal);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    transition: 0.3s;
}

.floating-enquire-btn:hover {
    transform: scale(1.05);
}

/* Sticky Sidebar: Bottom-Right Positioning */
.sticky-contact-sidebar {
    position: fixed;
    right: 20px;
    bottom: 100px; 
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Individual Icon Base Styling */
.sticky-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

/* Theme Colors: Charcoal & Gold for Email, Green for active contacts */
.icon-phone { 
   background: linear-gradient(135deg, #C5A059 0%, #F1D27F 50%, #C5A059 100%);
    color: white; 
}

.icon-email { 
    background: linear-gradient(135deg, #C5A059 0%, #F1D27F 50%, #C5A059 100%);
    color: #C5A059;          
    border: 1px solid #C5A059;
}

.icon-whatsapp { 
   background: linear-gradient(135deg, #C5A059 0%, #F1D27F 50%, #C5A059 100%);
    color: white; 
}

/* Hover Effect for Bottom-Right Corner */
.sticky-icon:hover {
    transform: scale(1.1) translateY(-5px);
    filter: brightness(1.1);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .sticky-contact-sidebar {
        right: 15px;
        bottom: 90px;
    }
    .sticky-icon {
        width: 45px;
        height: 45px;
    }
}

 :root {
    --gold-primary: #C5A059;
    --gold-gradient: linear-gradient(135deg, #C5A059 0%, #F1D27F 50%, #C5A059 100%);
    --charcoal: #1A1A1A;
    --dark-bg: #4a4a4a;
}



.form-container {
    background: #ffffff;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.form-header {
    background: var(--gold-gradient);
    color: var(--charcoal);
    text-align: center;
    font-size: 20px;
    padding: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}



.input-group {
    margin-bottom: 20px;
}

.input-group label {
    display: block;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--charcoal);
    font-size: 14px;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    box-sizing: border-box;
    font-size: 14px;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .input-group {
    flex: 1;
}

/* Submit Button  */
.submit-btn {
    background: var(--charcoal);
    color: var(--gold-primary);
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #000;
    color: #fff;
}

/* Isolated container to center the form */
.form-centering-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Form Card Styling based on your theme */
.reg-card {
    background: white;
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.reg-header {
    background: linear-gradient(135deg, #C5A059 0%, #F1D27F 50%, #C5A059 100%);
    color: #1A1A1A; 
    padding: 25px;
    text-align: center;
    font-size: 24px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reg-body {
    padding: 35px;
}

/* Submit Button Cite: */
.btn-submit {
    background: #1A1A1A;
    color: #C5A059;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #000;
    color: #fff;
}

.location-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.location-badge {
    background-color: #ffffff;
    color: #25343F; 
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px; 
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.pin-img {
    width: 14px; 
    height: auto;
    display: inline-block;
}