/* ===================================
   SCATERS WEBSITE - COMPLETE STYLES
   =================================== */

/* CSS Variables */
:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #F7B801;
    --dark-color: #1A1A1A;
    --light-color: #F5F5F5;
    --white: #FFFFFF;
    --grey: #666666;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    background-color: var(--white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }

p { margin-bottom: 1rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img { max-width: 100%; height: auto; }

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0;
    font-weight: 800;
    letter-spacing: 2px;
}

.logo .tagline {
    display: block;
    font-size: 0.75rem;
    color: var(--grey);
    font-weight: 400;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    color: var(--dark-color);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* ===================================
   BUTTONS
   =================================== */

.btn {
    display: inline-block;
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 78, 137, 0.3);
}

.btn-secondary:hover {
    background: var(--dark-color);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
}

/* ===================================
   HOME PAGE - HERO SECTION
   =================================== */

.hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 100px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 600px;
    color: var(--white);
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.skateboard-placeholder {
    font-size: 15rem;
    animation: float 3s ease-in-out infinite;
}

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

/* ===================================
   RAPTOR HIGHLIGHT SECTION
   =================================== */

.raptor-highlight {
    padding: 80px 20px;
    background: var(--light-color);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.section-header p {
    color: var(--grey);
    font-size: 1.2rem;
}

.raptor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.raptor-feature {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.raptor-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.raptor-feature h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.raptor-feature p {
    color: var(--grey);
    margin: 0;
}

.cta-center {
    text-align: center;
    margin-top: 40px;
}

/* ===================================
   ROADSHOW PROMO SECTION
   =================================== */

.roadshow-promo {
    padding: 80px 20px;
    background: var(--white);
}

.roadshow-content {
    max-width: 900px;
    margin: 0 auto;
}

.roadshow-badge {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.roadshow-content h2 {
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
}

.roadshow-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 50px;
}

.roadshow-locations h3 {
    color: var(--secondary-color);
    margin-bottom: 30px;
    text-align: center;
}

.location-card {
    background: var(--light-color);
    padding: 25px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.location-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.location-header h4 {
    color: var(--dark-color);
    margin: 0;
}

.date {
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.venue {
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.time {
    color: var(--grey);
    font-size: 0.95rem;
}

.guest-skaters {
    margin-top: 60px;
}

.guest-skaters h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.guest-profile {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 40px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 30px;
    align-items: center;
    color: var(--white);
}

.guest-icon {
    font-size: 5rem;
}

.guest-info h4 {
    margin-bottom: 5px;
    font-size: 2rem;
}

.guest-title {
    font-weight: 600;
    margin-bottom: 10px;
    opacity: 0.9;
}

.guest-bio {
    line-height: 1.8;
}

.roadshow-highlights {
    margin-top: 60px;
}

.roadshow-highlights h3 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.highlights-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.highlights-list li {
    background: var(--light-color);
    padding: 20px;
    border-radius: var(--border-radius);
    font-weight: 500;
    color: var(--dark-color);
}

/* ===================================
   RAPTOR PAGE - PRODUCT SECTIONS
   =================================== */

.product-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--secondary-color) 100%);
    padding: 100px 20px;
    color: var(--white);
    text-align: center;
}

.product-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.product-title {
    font-size: 5rem;
    margin-bottom: 15px;
}

.product-tagline {
    font-size: 1.5rem;
    opacity: 0.9;
}

.product-main {
    padding: 80px 20px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.skateboard-showcase {
    font-size: 20rem;
    text-align: center;
    animation: rotate 20s linear infinite;
}

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

.product-gallery {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
}

.gallery-thumb {
    font-size: 3rem;
    cursor: pointer;
    opacity: 0.5;
    transition: var(--transition);
}

.gallery-thumb:hover,
.gallery-thumb.active {
    opacity: 1;
    transform: scale(1.1);
}

.product-details h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.product-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 30px;
}

.product-highlights {
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.highlight-icon {
    font-size: 2rem;
}

.highlight-item strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 5px;
}

.highlight-item p {
    color: var(--grey);
    margin: 0;
}

/* Specifications */
.specifications {
    background: var(--light-color);
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 60px;
    font-size: 2.5rem;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.spec-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.spec-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--light-color);
}

.spec-list {
    list-style: none;
}

.spec-list li {
    padding: 10px 0;
    border-bottom: 1px solid var(--light-color);
    color: var(--grey);
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list strong {
    color: var(--dark-color);
    margin-right: 10px;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
}

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

.feature-box {
    position: relative;
    padding: 40px 30px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-color);
}

.feature-box h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.feature-box p {
    color: var(--grey);
    line-height: 1.8;
    margin: 0;
}

/* Where to Buy */
.where-to-buy {
    background: var(--light-color);
    padding: 80px 20px;
    text-align: center;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: var(--grey);
}

.buy-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.buy-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.buy-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.buy-card p {
    color: var(--grey);
    margin-bottom: 25px;
}

/* ===================================
   ABOUT PAGE
   =================================== */

.about-hero {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 100px 20px;
    color: var(--white);
    text-align: center;
}

.about-hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.our-story {
    padding: 80px 20px;
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--grey);
    margin-bottom: 20px;
}

.image-placeholder {
    font-size: 15rem;
    text-align: center;
    background: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
}

.image-caption {
    text-align: center;
    color: var(--grey);
    margin-top: 15px;
    font-style: italic;
}

.values-section {
    background: var(--light-color);
    padding: 80px 20px;
}

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

.value-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.value-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--grey);
    line-height: 1.7;
    margin: 0;
}

/* Why Scaters */
.why-scaters {
    padding: 80px 20px;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-content h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 60px;
}

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

.reason-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    min-width: 80px;
}

.reason-text h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.reason-text p {
    color: var(--grey);
    line-height: 1.8;
    margin: 0;
}

/* Team Section */
.team-section {
    background: var(--light-color);
    padding: 80px 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.team-member {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.member-photo {
    font-size: 6rem;
    margin-bottom: 20px;
}

.team-member h3 {
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.member-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.member-bio {
    color: var(--grey);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Growth Section */
.growth-section {
    padding: 80px 20px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    border-radius: var(--border-radius);
    color: var(--white);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

.growth-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.growth-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--grey);
}

/* ===================================
   ROADSHOW PAGE
   =================================== */

.roadshow-hero {
    background: linear-gradient(135deg, var(--dark-color) 0%, var(--primary-color) 100%);
    padding: 100px 20px;
    color: var(--white);
    text-align: center;
}

.event-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.roadshow-hero h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.event-overview {
    padding: 80px 20px;
}

.overview-content {
    max-width: 1000px;
    margin: 0 auto;
}

.overview-content h2 {
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.intro-text {
    text-align: center;
    font-size: 1.2rem;
    color: var(--grey);
    margin-bottom: 60px;
    line-height: 1.8;
}

.event-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.event-feature {
    text-align: center;
    padding: 30px;
}

.feature-icon-large {
    font-size: 5rem;
    margin-bottom: 20px;
}

.event-feature h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.event-feature p {
    color: var(--grey);
    line-height: 1.7;
}

/* Tour Schedule */
.tour-schedule {
    background: var(--light-color);
    padding: 80px 20px;
}

.schedule-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.schedule-item {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 30px;
    display: flex;
    gap: 30px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.schedule-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.schedule-item.featured-event {
    border: 3px solid var(--accent-color);
}

.schedule-date {
    min-width: 100px;
    text-align: center;
    background: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    border-radius: var(--border-radius);
}

.date-day {
    font-size: 2.5rem;
    font-weight: 800;
}

.date-month {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-details h3 {
    color: var(--dark-color);
    margin-bottom: 10px;
}

.venue-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.venue-address {
    color: var(--grey);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.time-info {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.time-badge {
    background: var(--light-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--dark-color);
}

.featured-badge {
    background: var(--accent-color);
    font-weight: 600;
}

.event-description {
    color: var(--grey);
    line-height: 1.7;
    margin: 0;
}

/* Guest Skater Section */
.guest-skater-section {
    padding: 80px 20px;
}

.skater-profile {
    max-width: 1000px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 50px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 50px;
}

.skater-photo {
    font-size: 10rem;
    text-align: center;
}

.skater-info h3 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.skater-title {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.skater-credentials {
    color: var(--grey);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-color);
}

.skater-bio p {
    color: var(--grey);
    line-height: 1.8;
    margin-bottom: 15px;
}

.skater-schedule {
    background: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-top: 30px;
}

.skater-schedule h4 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.skater-schedule ul {
    list-style: none;
}

.skater-schedule li {
    padding: 10px 0;
    color: var(--dark-color);
    font-weight: 500;
}

/* What to Expect */
.what-to-expect {
    background: var(--light-color);
    padding: 80px 20px;
}

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

.expect-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: var(--transition);
}

.expect-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.expect-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.expect-card p {
    color: var(--grey);
    line-height: 1.7;
    margin: 0;
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    border-left: 4px solid var(--primary-color);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.faq-item p {
    color: var(--grey);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    padding: 80px 20px;
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.social-btn {
    background: var(--white);
    color: var(--secondary-color);
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.social-btn:hover {
    background: var(--accent-color);
    color: var(--dark-color);
    transform: translateY(-2px);
}

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

.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-icon {
    color: var(--accent-color);
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.social-icon:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

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

@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .skateboard-placeholder {
        font-size: 10rem;
    }
    
    .product-layout {
        grid-template-columns: 1fr;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .skater-profile {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.5rem; }
    
    .nav-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero {
        padding: 60px 20px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .skateboard-placeholder {
        font-size: 8rem;
    }
    
    .product-title {
        font-size: 3rem;
    }
    
    .product-tagline {
        font-size: 1.2rem;
    }
    
    .skateboard-showcase {
        font-size: 12rem;
    }
    
    .schedule-item {
        flex-direction: column;
    }
    
    .schedule-date {
        min-width: auto;
    }
    
    .location-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .guest-profile {
        padding: 30px;
    }
    
    .reason-item {
        flex-direction: column;
    }
    
    .reason-number {
        min-width: auto;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1.1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .raptor-grid,
    .spec-grid,
    .features-grid,
    .values-grid,
    .expect-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero h1,
    .roadshow-hero h1 {
        font-size: 2.5rem;
    }
    
    .image-placeholder {
        font-size: 8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 1rem;
    }
    
    .product-title {
        font-size: 2.5rem;
    }
    
    .skateboard-showcase {
        font-size: 8rem;
    }
    
    .gallery-thumb {
        font-size: 2rem;
    }
    
    .feature-icon-large {
        font-size: 3.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

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

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }
.mt-4 { margin-top: 40px; }
.mt-5 { margin-top: 50px; }

.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mb-4 { margin-bottom: 40px; }
.mb-5 { margin-bottom: 50px; }

.pt-1 { padding-top: 10px; }
.pt-2 { padding-top: 20px; }
.pt-3 { padding-top: 30px; }

.pb-1 { padding-bottom: 10px; }
.pb-2 { padding-bottom: 20px; }
.pb-3 { padding-bottom: 30px; }

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

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

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

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

.slide-in-left {
    animation: slideInLeft 0.6s ease-out;
}

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

.slide-in-right {
    animation: slideInRight 0.6s ease-out;
}

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
    .header,
    .footer,
    .btn,
    .cta-section {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .container {
        max-width: 100%;
    }
}