/* ================= GLOBAL ================= */

body {
    margin: 0;
    background: #000;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
}

a { text-decoration: none; color: #fff; }
ul { list-style: none; margin: 0; padding: 0; }

/* ================= HEADER ================= */

.main-header {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.main-header.scrolled {
    background: rgba(0,0,0,0.9);
    box-shadow: 0 0 20px rgba(255,77,0,0.4);
}

.header-wrapper {
    height: 70px;
}

.logo img {
    height: 55px;
}

.header-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 25px;
}

/* ================= NAV ================= */

.nav-menu ul {
    display: flex;
    gap: 25px;
}

.nav-menu ul li a {
    color: #bbb;
    font-size: 14px;
    position: relative;
}

/* HOVER LINE */
.nav-menu ul li a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg,#ff4d00,#ff7a00);
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: #fff;
}

.nav-menu ul li a:hover::after {
    width: 100%;
}

/* ================= CTA PREMIUM ================= */

.cta-btn {
    background: linear-gradient(135deg, #ff2d55, #ff4d00, #ff7a00);
    color: #fff;
    padding: 7px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;

    border: none;
    position: relative;
    overflow: hidden;

    transition: all 0.3s ease;
}

/* GLOW */
.cta-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff2d55, #ff7a00);
    opacity: 0.3;
    filter: blur(10px);
    z-index: -1;
}

/* HOVER */
.cta-btn:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 0 12px rgba(255, 77, 0, 0.6);
}


/* MOBILE CTA */
.mobile-cta {
    margin-top: 10px;
}

.mobile-cta .cta-btn {
    display: block;
    text-align: center;
    width: 100%;
}

/* DESKTOP: hide this CTA */
@media (min-width: 769px) {
    .mobile-cta {
        display: none;
    }
}


/* TOGGLE */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .menu-toggle {
        display: block;
    }

    .header-cta {
        display: none;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
    }

    /* 🔥 FORCE override Bootstrap */
    .nav-menu ul {
        display: none !important;
        flex-direction: column;
        background: #111;
        padding: 20px;
        gap: 20px;
    }

    .nav-menu ul.show {
        display: flex !important;
    }
}



/* ================= HERO ================= */

.hero-section {
    background-color: #000;
    color: #fff;
    padding: 120px 80px;
    position: relative;
    overflow: hidden;
}

.hero-left {
    padding-right: 60px;
}

.hero-title {
    font-size: 80px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 50px;
}

.hero-subtext {
    font-size: 15px;
    color: #bfbfbf;
    line-height: 1.8;
    margin-bottom: 50px;
    letter-spacing: 0.6px;
}

/* CTA EXACT HEADER STYLE */
.hero-btn {
    background: linear-gradient(90deg, #ff3c2f, #ff7a00);
    color: #fff !important;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    transition: 0.3s;
}

.hero-btn:hover {
    opacity: 0.9;
}

/* PLUS ICON */
.hero-plus {
    margin-top: 40px;
    color: #ff2b6a;
    font-size: 20px;
}

/* RIGHT SIDE */
.hero-right {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

/* IMAGE */
.hero-img {
    width: 85%;
    margin-left: 80px;
    display: block;
    filter: grayscale(100%);
}

/* ================= HERO FIX FINAL ================= */

.hero-right {
    display: flex;
    justify-content: flex-end;
}

.hero-image-wrapper {
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

/* 🔥 KEY CONTAINER (ANCHOR) */
.hero-image-box {
    position: relative;
    width: 520px; /* FIXED WIDTH → matches design */
}

/* IMAGE */
.hero-img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
    position: relative;
    z-index: 1;
}

/* COMMON BLOCK */
.hero-block {
    position: absolute;
    z-index: 3;
}

/* ===== TOP SHAPE (NOW PERFECT) ===== */

/* MAIN PINK */
.pink-main {
    top: -101px;
  right: 80px;
  width: 90px;
  height: 103px;
  background: #ff0a78;
}

/* STEP */
.pink-step {
    top: -61px;
  right: 169px;
  width: 140px;
  height: 63px;
  background: #ff0a78;
}

/* ORANGE RIGHT */
.orange-top {
  top: -101px;
  right: 0;
  width: 90px;
  height: 103px;
  background: #ff7a00;
}

/* ===== BOTTOM BLOCK ===== */
.orange-bottom {
   bottom: -1px;
  left: 24px;
  width: 56px;
  height: 80px;
  background: #ff7a00;
  z-index: 2;
}

/* GRID FIX */
.row {
    margin: 0;
}












/* ================= INTRO SECTION ================= */

.intro-section {
    background: #000;
    color: #fff;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.intro-section .container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    text-align: center;
}

/* TAG */
.intro-tag {
    font-size: 14px;
    letter-spacing: 2px;
    color: #ccc;
    margin-bottom: 20px;
}

.intro-tag .cross {
    color: #ff3b3b;
    margin: 0 10px;
}

/* TITLE */
.intro-title {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* TEXT */
.intro-text {
    font-size: 16px;
    color: #bbb;
    line-height: 1.8;
}

/* IMAGES */
.intro-img {
    position: absolute;
    width: 250px;
}

.intro-img img {
    width: 100%;
    display: block;
    filter: grayscale(100%);
}

/* LEFT */
.intro-img-left {
    left: -40px;
    top: 60px;
}

/* RIGHT */
.intro-img-right {
    right: -40px;
    bottom: 60px;
}

/* CORNER ACCENTS */
.corner {
    position: absolute;
    width: 20px;
    height: 20px;
}

.corner.pink {
    background: #ff2e7a;
    top: -50px;
    left: 25px;
}

.corner.orange {
    background: #ff7a00;
    bottom: -46px;
    right: -10px;
}





/* Team */
/* ================= TEAM ================= */

.team-section {
    background: #000;
    color: #fff;
    padding: 100px 80px;
    overflow: hidden;
}

/* HEADER */
.team-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 60px;
}

.team-header h2 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
}

/* SHAPES */
.team-shapes {
    display: flex;
    gap: 10px;
}

.shape {
    width: 50px;
    height: 50px;
}

.orange { background: #ff7a00; }
.pink { background: #ff0066; }

/* ================= SLIDER ================= */

.team-slider-wrapper {
    position: relative;
    overflow: hidden;
}

/* SLIDER TRACK */
.team-slider {
    display: flex;
    gap: 10px;
    transition: transform 0.5s ease;
}

/* CARD WIDTH FIX (3 CARDS) */
.team-card {
    flex: 0 0 calc(33.33% - 20px);
    background: #111;
}

/* IMAGE */
.team-img-wrap {
    height: 480px;
}

.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.team-content {
    background: #1a1a1a;
}

/* TOP STRIP */
.top-strip {
    display: flex;
}

.name {
    background: #ff7a00;
    padding: 12px 15px;
    font-weight: 700;
    flex: 1;
}

/* LINKEDIN */
.linkedin-box {
    width: 60px;
    background: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ROLE */
.role {
    background: #ff0066;
    padding: 6px 15px;
}

/* TEXT */
.bottom-content {
    padding: 8px 15px;
    background: linear-gradient(to top, #111, #1a1a1a);
}

.quote {
    font-size: 16px;
    margin-bottom: 10px;
	font-style: italic!important;
	
}

.desc {
    font-size: 13px;
    color: #ccc;
}

/* ================= ARROWS (FIXED) ================= */

.team-arrows {
    position: absolute;
    right: 0;
    bottom: 790px;
    display: flex;
    gap: 25px;
    z-index: 10; /* 🔥 FIX: bring above cards */
	margin-top:50px;
}

.team-arrows button {
    background: transparent;
    border: 2px solid #ccc;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.3s;
}

.team-arrows button:hover {
    background: #fff;
    color: #000;
}

.team-arrows2 {
    position: absolute;
    right: 0;
    bottom: 10px;
    display: flex;
    gap: 25px;
    z-index: 10; /* 🔥 FIX: bring above cards */
	margin-top:50px;
}

.team-arrows2 button {
    background: transparent;
    border: 2px solid #ccc;
    color: #fff;
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.3s;
}

.team-arrows2 button:hover {
    background: #fff;
    color: #000;
}










/* ================= TICKER ================= */
/* ================= TICKER SECTION ================= */

.ticker-section {
    background: #000;
    padding: 40px 0;
    overflow: hidden;
}

/* WRAPPER */
.ticker-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

/* ================= TAG ================= */

.ticker-tag {
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
}

/* CROSS */
.ticker-tag .cross {
    color: #ff007f;
    margin: 0 10px;
}

/* ================= ROW ================= */

.ticker-row {
    width: 100%;
    overflow: hidden;
}

/* ================= TRACK (FIXED NO BREAK) ================= */

.ticker-track {
    display: flex;
    flex-wrap: nowrap;              /* 🚨 prevent line break */
    width: max-content;             /* 🚨 expand full width */
    gap: 80px;

    font-size: 64px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;

    will-change: transform;
}

/* WORD */
.ticker-track span {
    display: inline-block;
    white-space: nowrap;            /* 🚨 double safety */
}

/* COLORS */
.ticker-track span {
    color: #ff7a00;
}

.ticker-track span:nth-child(even) {
    color: #ff007f;
}

/* ================= ANIMATION ================= */

.ticker-left .ticker-track {
    animation: scrollLeft 20s linear infinite;
}

.ticker-right .ticker-track {
    animation: scrollRight 20s linear infinite;
}

/* LEFT */
@keyframes scrollLeft {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* RIGHT */
@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0%);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .ticker-track {
        font-size: 42px;
        gap: 50px;
    }
}

@media (max-width: 600px) {
    .ticker-track {
        font-size: 28px;
        gap: 30px;
    }

    .ticker-section {
        padding: 25px 0;
    }
}









/* ================= CONTACT SECTION ================= */
/* ================= CONTACT DARK ================= */

.contact-section {
    position: relative;
    background: #000;
    color: #fff;
    padding: 140px 20px;
    text-align: center;
    overflow: hidden;
}

/* CONTAINER */

.contact-email a {
    color: #ff5a1f;       /* SportsFan360 orange */
    font-weight: 700;     /* bold */
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-email a:hover {
    text-decoration: underline;
    color: #ffffff;       /* optional hover effect */
}
.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

/* TITLE */
.contact-title {
    font-size: 60px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 30px;
}

/* SUBTEXT */
.contact-sub2 {
    font-size: 25px;
    color: #FF007A;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
    text-transform: uppercase;
}.contact-sub {
    font-size: 16px;
    color: #FF7A00;
    max-width: 600px;
    margin: 0 auto 50px;
    line-height: 1.6;
    text-transform: uppercase;
}

/* FORM */
.contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    margin: 0 auto 20px;
}

.contact-form input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid #444;
    background: #111;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.contact-form input::placeholder {
    color: #888;
    letter-spacing: 1px;
}

.contact-form button {
    padding: 16px 26px;
    border: none;
    background: #e5e5e5;
    color: #000;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #ff7a18;
    color: #fff;
}

/* NOTE */
.contact-note {
    font-size: 14px;
    color: #aaa;
    margin-top: 15px;
    letter-spacing: 1px;
}

/* ================= CORNER BLOCKS ================= */

.corner {
    position: absolute;
    width: 60px;
    height: 60px;
}

/* TOP LEFT */
.top-left {
    top: 60px;
    left: 60px;
    background: linear-gradient(to right, #ff7a00 50%, #ff007a 50%);
}

/* TOP RIGHT */
.top-right {
    top: 60px;
    right: 60px;
    background: linear-gradient(to bottom, #ff7a00 50%, #ff007a 50%);
}

/* BOTTOM LEFT */
.bottom-left {
    bottom: 80px;
    left: 60px;
    background: linear-gradient(to right, #ff007a 50%, #ff7a00 50%);
}

/* BOTTOM RIGHT */
.bottom-right {
    bottom: 80px;
    right: 60px;
    background: linear-gradient(to bottom, #ff007a 50%, #ff7a00 50%);
}







/* ================= ACCESSIBILITY ================= */
#a11yPanel {
    display: none;
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 230px;
    background: #111;
    padding: 15px;
    border-radius: 12px;
    z-index: 9999;
}

#a11yPanel.active {
    display: block;
}

#a11yToggle {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 50%;
    z-index: 10000;
}


#a11yToggle {
    position: fixed;
    right: 20px;
    bottom: 120px;
    z-index: 9999;
    background: #ff6a00;
    color: #fff;
    border: none;
    padding: 14px 16px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
}

#a11yPanel {
    position: fixed;
    right: -260px;
    top: 50%;
    transform: translateY(-50%);
    width: 260px;
    background: #111;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    transition: 0.3s ease;
    box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}

#a11yPanel.active {
    right: 0;
}

#a11yPanel h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.a11y-group {
    margin-bottom: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.a11y-group button {
    flex: 1;
    padding: 8px;
    background: #222;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
}

.a11y-group button:hover {
    background: #ff6a00;
}

.a11y-group .reset {
    background: red;
}

/* ================= BREADCRUMB ================= */

.breadcrumb-sf360 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 25px;
    font-size: 14px;
    font-weight: 500;
}

/* LINKS */
.breadcrumb-sf360 a {
    color: #aaa;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.breadcrumb-sf360 a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #ff6a00;
    transition: width 0.3s ease;
}

.breadcrumb-sf360 a:hover {
    color: #fff;
}

.breadcrumb-sf360 a:hover::after {
    width: 100%;
}

/* DIVIDER */
.breadcrumb-sf360 .divider {
    color: #ff6a00;
    font-size: 14px;
}

/* CURRENT PAGE */
.breadcrumb-sf360 .current {
    color: #fff;
    font-weight: 600;
}

/* OPTIONAL GLOW LINE */
.breadcrumb-sf360 {
    border-left: 2px solid #ff6a00;
    padding-left: 12px;
}

/* ================= FOOTER ================= */

.main-footer {
    background: #0b0b0b;
    border-top: 1px solid #1a1a1a;
    padding: 18px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LEFT ICONS */
.footer-left {
    display: flex;
    gap: 18px;
}

.footer-left a {
    color: #bbb;
    font-size: 16px;
    transition: 0.3s;
}

.footer-left a:hover {
    color: #fff;
}

/* CENTER TEXT */
.footer-center {
    font-size: 13px;
    color: #888;
    text-align: center;
}

/* RIGHT EMAIL */
.footer-right {
    font-size: 13px;
    color: #aaa;
}

.footer-right:hover {
    color: #fff;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {

    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-left {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-right {
        font-size: 12px;
    }
}




#toTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 42px;
    height: 42px;
    border-radius: 4px;

    background: #1a1a1a;
    color: #fff;
    border: 1px solid #333;

    font-size: 16px;
    cursor: pointer;

    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);

    transition: all 0.3s ease;
    z-index: 9999;
}




/* ================= FOOTER LEGAL LINKS ================= */

.footer-center {
    text-align: center;
}

.footer-legal {
    margin-top: 6px;
    font-size: 11px;
    opacity: 0.7;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-legal span {
    margin: 0 6px;
    color: #666;
}


/* ================= FOOTER BASE ================= */

.main-footer {
    padding: 20px 0;
    background: #000;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* LEFT */
.footer-left a {
    color: #ccc;
    margin-right: 14px;
    font-size: 16px;
    transition: 0.3s;
}

.footer-left a:hover {
    color: #fff;
}

/* CENTER */
.footer-center {
    text-align: center;
    font-size: 14px;
    color: #aaa;
}

/* LEGAL LINKS */
.footer-legal {
    margin-top: 6px;
    font-size: 11px;
    opacity: 0.7;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-legal a:hover {
    color: #fff;
}

.footer-legal span {
    margin: 0 6px;
    color: #666;
}

/* RIGHT */
.footer-right a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
}

.footer-right a:hover {
    color: #fff;
}


/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
    .footer-inner {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-left {
        order: 1;
    }

    .footer-center {
        order: 2;
    }

    .footer-right {
        order: 3;
    }
}


/* MOBILE */
@media (max-width: 600px) {

    .footer-left a {
        margin-right: 10px;
        font-size: 14px;
    }

    .footer-center {
        font-size: 12px;
    }

    .footer-legal {
        font-size: 10px;
        line-height: 1.6;
    }

    .footer-legal span {
        margin: 0 4px;
    }

    .footer-right a {
        font-size: 12px;
    }
}



#toTop.show {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

#toTop:hover {
    background: #ff4d00;
}





/* ================= LEGAL PAGE ================= */

.legal-section {
    padding: 140px 0 80px;
    background: #000;
    color: #fff;
}

.legal-section h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 10px;
}

.legal-section .subtitle {
    font-size: 18px;
    opacity: 0.7;
    margin-bottom: 40px;
}

.legal-section h2 {
    margin-top: 40px;
    font-size: 22px;
    font-weight: 700;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.85;
}

.legal-section ul {
    padding-left: 20px;
    margin-top: 10px;
}

.legal-section ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-section a {
    color: #ff6a00;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}


/* ================= QUOTES ================= */

/* ================= QUOTES SECTION ================= */

.quotes-section {
    position: relative;
    padding: 120px 20px;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
    text-align: center;
    overflow: hidden;
}

/* subtle glow layer */
.quotes-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,120,0,0.15), transparent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(80px);
}

/* inner container */
.quotes-inner {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* quote text */
.quote-text {
    font-size: 28px;
    line-height: 1.6;
    font-weight: 300;
    color: #fff;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

/* author */
.quote-author {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

/* show animation */
.quotes-inner.show .quote-text {
    opacity: 1;
    transform: translateY(0);
}

.quotes-inner.show .quote-author {
    opacity: 1;
    transform: translateY(0);
}

/* fade out */
.quotes-inner.fade-out .quote-text,
.quotes-inner.fade-out .quote-author {
    opacity: 0;
    transform: translateY(-30px);
}

/* divider line (premium touch) */
.quotes-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60%;
    height: 1px;
    background: rgba(255,255,255,0.08);
    transform: translateX(-50%);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 992px) {
    .quote-text {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .quotes-section {
        padding: 80px 16px;
    }

    .quote-text {
        font-size: 18px;
    }

    .quote-author {
        font-size: 14px;
    }
}



/* ================= CONTACT FORM ================= */

.contact-form-wrapper {
    max-width: 600px;
    margin: 40px auto;
}

.form-message {
    display: none;
    margin-bottom: 20px;
    padding: 12px;
    border: 1px solid red;
    color: #ff4d4d;
    font-size: 14px;
}

.form-message.success {
    border-color: #00ffae;
    color: #00ffae;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-group {
    margin-bottom: 15px;
    width: 100%;
}

.form-group label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
    color: #aaa;
	text-align:left!important;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    background: #111;
    border: 1px solid #222;
    color: #fff;
    font-size: 14px;
}
.form-group textarea {resize:none;}

.form-group textarea {
    height: 120px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #ff6a00;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

#captchaLabel {
    white-space: nowrap;
    font-weight: 600;
}

.submit-btn {
    width: 180px;
    margin: 20px auto;
    display: block;
    padding: 12px;
    background: #fff;
    color: #000;
    border: none;
    cursor: pointer;
    font-weight: bold;
}

.submit-btn:hover {
    background: #ff6a00;
    color: #fff;
}

/* Remove number input arrows (if any browser still forces it) */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

