/* ===================================
   TATTOO COURSES - MAIN STYLESHEET
   Bold, Artistic, Professional Design
   =================================== */

:root {
    /* Color Palette - Tattoo Inspired */
    --ink-black: #0a0a0a;
    --deep-charcoal: #1a1a1a;
    --ink-grey: #2d2d2d;
    --silver: #b8b8b8;
    --bright-white: #ffffff;
    --accent-red: #d32f2f;
    --accent-gold: #ffa726;
    --accent-cyan: #00bcd4;
    --accent-purple: #7b1fa2;
    --soft-cream: #fef7e5;
    
    /* Typography */
    --font-display: 'Bebas Neue', sans-serif;
    --font-heading: 'Archivo Black', sans-serif;
    --font-body: 'Manrope', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-max: 1400px;
}

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

body {
    font-family: var(--font-body);
    color: var(--ink-grey);
    background: var(--bright-white);
    overflow-x: hidden;
    line-height: 1.7;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--ink-black);
    color: var(--bright-white);
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
    box-shadow: 0 -5px 30px rgba(0,0,0,0.3);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--accent-cyan);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 30px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-cookie.accept {
    background: var(--accent-red);
    color: white;
}

.btn-cookie.reject {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-cookie:hover {
    transform: translateY(-2px);
}

/* ===================================
   NAVIGATION
   =================================== */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--accent-red);
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 2px;
    color: white !important;
}

.brand-ink {
    color: var(--accent-red);
}

.brand-courses {
    color: white;
}

.nav-link {
    color: var(--silver) !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-red);
    transition: width 0.3s ease;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--bright-white) !important;
}

.dropdown-menu {
    background: var(--ink-black);
    border: 2px solid var(--accent-red);
    margin-top: 10px;
}

.dropdown-item {
    color: var(--silver);
    transition: all 0.3s ease;
    padding: 12px 20px;
}

.dropdown-item:hover {
    background: var(--accent-red);
    color: white;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background: linear-gradient(135deg, var(--ink-black) 0%, var(--deep-charcoal) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.shape {
    position: absolute;
    opacity: 0.1;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-red);
    border-radius: 50%;
    top: -100px;
    right: -100px;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-cyan);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -50px;
    left: -50px;
    animation: float 8s ease-in-out infinite;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--accent-gold);
    transform: rotate(45deg);
    top: 50%;
    right: 10%;
    animation: rotate 10s linear infinite;
}

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

@keyframes rotate {
    from { transform: rotate(45deg); }
    to { transform: rotate(405deg); }
}

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

.hero-badge {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    animation: slideInLeft 0.8s ease;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 80px;
    line-height: 0.9;
    margin-bottom: 30px;
    animation: slideInLeft 0.8s ease 0.2s backwards;
}

.title-line {
    display: block;
}

.title-line.highlight {
    color: var(--accent-red);
    font-family: var(--font-heading);
    font-style: italic;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    color: var(--silver);
    max-width: 500px;
    animation: slideInLeft 0.8s ease 0.4s backwards;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    animation: slideInLeft 0.8s ease 0.6s backwards;
}

.btn-hero-primary,
.btn-hero-secondary {
    padding: 18px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 14px;
}

.btn-hero-primary {
    background: var(--accent-red);
    color: white;
    border: 2px solid var(--accent-red);
}

.btn-hero-primary:hover {
    background: transparent;
    color: var(--accent-red);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
}

.btn-hero-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-hero-secondary:hover {
    background: white;
    color: var(--ink-black);
    transform: translateY(-3px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    animation: slideInLeft 0.8s ease 0.8s backwards;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--accent-red);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image-container {
    position: relative;
    z-index: 2;
    animation: slideInRight 0.8s ease 0.4s backwards;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.hero-image-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent-red);
    border-radius: 10px;
    z-index: 1;
}

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

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

/* ===================================
   SECTION HEADERS
   =================================== */
.section-header {
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    background: var(--ink-black);
    color: white;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--ink-black);
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-subtitle {
    font-size: 20px;
    color: var(--ink-grey);
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   WHY MARKETING SECTION
   =================================== */
.why-marketing-section {
    padding: var(--section-padding) 0;
    background: var(--soft-cream);
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.why-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    border-radius: 50%;
    margin-bottom: 25px;
}

.why-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--ink-black);
}

.why-card p {
    color: var(--ink-grey);
    margin: 0;
}

.visual-story {
    background: white;
    padding: 60px;
    border-radius: 10px;
    border-left: 5px solid var(--accent-red);
}

.story-image-wrap {
    position: relative;
}

.story-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.story-content h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--ink-black);
}

.story-content p {
    margin-bottom: 20px;
}

/* ===================================
   LEARNING PATH SECTION
   =================================== */
.learning-path-section {
    padding: var(--section-padding) 0;
    background: var(--ink-black);
    color: white;
}

.learning-path-section .section-label {
    background: var(--accent-red);
}

.learning-path-section .section-title {
    color: white;
}

.learning-path-section .section-subtitle {
    color: var(--silver);
}

.learning-path {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
}

.path-step {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    position: relative;
}

.path-step:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(10px);
}

.step-number {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--accent-red);
    flex-shrink: 0;
}

.step-content h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 10px;
}

.step-content p {
    color: var(--silver);
    margin-bottom: 10px;
}

.step-duration {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.path-connector {
    width: 2px;
    height: 40px;
    background: var(--accent-red);
    margin: 0 auto;
}

/* ===================================
   STATISTICS SECTION
   =================================== */
.statistics-section {
    padding: var(--section-padding) 0;
    position: relative;
    background: linear-gradient(135deg, var(--accent-red) 0%, var(--accent-purple) 100%);
    color: white;
}

.stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 50 Q 25 25, 50 50 T 100 50" stroke="rgba(255,255,255,0.1)" fill="none" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.stat-box {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 72px;
    line-height: 1;
    display: inline-block;
}

.stat-percent {
    font-family: var(--font-display);
    font-size: 48px;
}

.stat-description {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.5;
}

/* ===================================
   PHILOSOPHY SECTION
   =================================== */
.philosophy-section {
    padding: var(--section-padding) 0;
    background: var(--soft-cream);
}

.manifesto-card {
    background: white;
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-left: 5px solid var(--accent-red);
}

.manifesto-label {
    display: inline-block;
    background: var(--ink-black);
    color: white;
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.manifesto-title {
    font-family: var(--font-display);
    font-size: 48px;
    color: var(--ink-black);
    margin-bottom: 30px;
}

.manifesto-text .lead {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--ink-grey);
}

.manifesto-principle {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.principle-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-red);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}

.principle-content h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--ink-black);
}

.principle-content p {
    color: var(--ink-grey);
    margin: 0;
}

/* ===================================
   QUOTE WALL SECTION
   =================================== */
.quote-wall-section {
    padding: var(--section-padding) 0;
    background: var(--ink-black);
    position: relative;
}

.quote-bg-texture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.02) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.quote-card {
    background: rgba(255,255,255,0.05);
    padding: 40px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-red);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.quote-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}

.quote-mark {
    font-family: var(--font-display);
    font-size: 80px;
    color: var(--accent-red);
    line-height: 1;
    margin-bottom: 20px;
}

.quote-text {
    color: white;
    font-size: 18px;
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.7;
}

.quote-author {
    display: flex;
    flex-direction: column;
    color: var(--silver);
}

.quote-author strong {
    color: white;
    margin-bottom: 5px;
}

/* ===================================
   TRANSFORMATION SECTION
   =================================== */
.transformation-section {
    padding: var(--section-padding) 0;
    background: white;
}

.transformation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.transformation-card {
    background: var(--soft-cream);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid var(--accent-red);
}

.transformation-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.transform-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-red);
}

.transformation-header h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 5px;
}

.transformation-header p {
    color: var(--ink-grey);
    margin: 0;
}

.transformation-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.before,
.after {
    background: white;
    padding: 25px;
    border-radius: 8px;
}

.ba-label {
    display: block;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.before .ba-label {
    color: var(--ink-grey);
}

.after .ba-label {
    color: var(--accent-red);
}

.transformation-comparison ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.transformation-comparison li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    font-size: 14px;
}

.transformation-comparison li:last-child {
    border-bottom: none;
}

.transformation-time {
    text-align: center;
    font-weight: 700;
    color: var(--accent-red);
    padding-top: 20px;
    border-top: 2px dashed var(--accent-red);
}

/* ===================================
   TIMELINE SECTION
   =================================== */
.timeline-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, white 0%, var(--soft-cream) 100%);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--accent-red);
}

.timeline-item {
    position: relative;
    margin-bottom: 50px;
}

.timeline-marker {
    position: absolute;
    left: -37px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--accent-red);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--accent-red);
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid var(--accent-red);
}

.timeline-week {
    display: inline-block;
    background: var(--accent-red);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--ink-black);
}

.timeline-content p {
    color: var(--ink-grey);
    margin: 0;
}

/* ===================================
   COURSES PREVIEW SECTION
   =================================== */
.courses-preview-section {
    padding: var(--section-padding) 0;
    background: var(--ink-black);
    color: white;
}

.courses-preview-section .section-label {
    background: var(--accent-red);
}

.courses-preview-section .section-title {
    color: white;
}

.courses-preview-section .section-subtitle {
    color: var(--silver);
}

.course-preview-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.course-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-red);
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

.course-preview-card.featured {
    border-color: var(--accent-gold);
}

.course-preview-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-red);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.course-preview-card.featured .course-preview-badge {
    background: var(--accent-gold);
    color: var(--ink-black);
}

.course-preview-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.course-preview-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.course-preview-content h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 15px;
}

.course-preview-content > p {
    color: var(--silver);
    margin-bottom: 25px;
}

.course-preview-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    flex: 1;
}

.course-preview-features li {
    padding: 10px 0;
    color: var(--silver);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.course-preview-features li:last-child {
    border-bottom: none;
}

.course-preview-features i {
    color: var(--accent-red);
    margin-right: 10px;
}

.course-preview-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid rgba(255,255,255,0.1);
}

.course-price {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 12px;
    color: var(--silver);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--accent-red);
}

.btn-course {
    background: var(--accent-red);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 5px;
}

.btn-course:hover {
    background: white;
    color: var(--ink-black);
    transform: translateY(-2px);
}

/* ===================================
   VALUES SECTION
   =================================== */
.values-section {
    padding: var(--section-padding) 0;
    background: white;
}

.values-image {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.values-content {
    padding-left: 40px;
}

.value-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.value-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.value-icon.trust {
    background: linear-gradient(135deg, var(--accent-red), var(--accent-purple));
}

.value-icon.creativity {
    background: linear-gradient(135deg, var(--accent-gold), var(--accent-red));
}

.value-icon.ethics {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
}

.value-icon.results {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-cyan));
}

.value-text h4 {
    font-family: var(--font-heading);
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--ink-black);
}

.value-text p {
    color: var(--ink-grey);
    margin: 0;
}

/* ===================================
   FINAL CTA SECTION
   =================================== */
.final-cta-section {
    padding: var(--section-padding) 0;
    background: var(--soft-cream);
    position: relative;
    overflow: hidden;
}

.cta-artistic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(211, 47, 47, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 188, 212, 0.1) 0%, transparent 50%);
}

.cta-title {
    font-family: var(--font-display);
    font-size: 56px;
    color: var(--ink-black);
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.cta-text {
    font-size: 20px;
    color: var(--ink-grey);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    border-radius: 5px;
}

.btn-cta-primary {
    background: var(--accent-red);
    color: white;
}

.btn-cta-primary:hover {
    background: var(--ink-black);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--ink-black);
    border: 2px solid var(--ink-black);
}

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

.cta-guarantee {
    font-size: 14px;
    color: var(--ink-grey);
    position: relative;
    z-index: 2;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--ink-black);
    color: white;
    padding: 80px 0 30px;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-brand span {
    color: var(--accent-red);
}

.footer p {
    color: var(--silver);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--accent-red);
    transform: translateY(-3px);
}

.footer h4 {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: var(--silver);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-red);
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: var(--silver);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 60px;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .transformation-grid {
        grid-template-columns: 1fr;
    }
    
    .values-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .transformation-comparison {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 30px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-marker {
        left: -27px;
    }
}




.navbar-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}
.dropdown-toggle::after{
    content: none;
    display: none;
}