/* ============================================
   BAREFOOT BRIDAL - ELEGANT & MODERN DESIGN
   ============================================ */

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

:root {
    --bb-primary: #137cc5;
    --bb-primary-dark: #0e5c91;
    --bb-primary-light: #1a8fe3;
    --bb-accent: #d4a574;
    --bb-gradient: linear-gradient(135deg, #137cc5 0%, #1a8fe3 100%);
    --bb-text: #1a1a1a;
    --bb-text-light: #666;
    --bb-bg: #ffffff;
    --bb-bg-light: #f8f9fa;
    --bb-border: #e5e7eb;
}

body.bb-page {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', sans-serif;
    background: var(--bb-bg);
    color: var(--bb-text);
    overflow-x: hidden;
    line-height: 1.6;
    font-size: 16px;
}

/* Header */
.bb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--bb-border);
    transition: all 0.3s ease;
}

.bb-nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bb-logo {
    font-size: 1.25rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--bb-text);
    transition: color 0.3s ease;
}

.bb-logo:hover {
    color: var(--bb-primary);
}

.bb-logo .dot {
    color: var(--bb-primary);
}

.bb-nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.bb-nav-links a {
    text-decoration: none;
    color: var(--bb-text);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.bb-nav-links a:hover,
.bb-nav-links a.active {
    color: var(--bb-primary);
}

.bb-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.bb-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--bb-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.bb-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.bb-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.bb-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.bb-hero {
    padding: 6rem 0 4rem;
    background: linear-gradient(180deg, rgba(19, 124, 197, 0.03) 0%, #ffffff 100%);
    margin-top: 60px;
}

.bb-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bb-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bb-text-light);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.bb-back-link:hover {
    color: var(--bb-primary);
}

.bb-hero-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.bb-hero-left {
    max-width: 600px;
}

.bb-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(19, 124, 197, 0.1);
    color: var(--bb-primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bb-hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: var(--bb-text);
}

.bb-hero-tagline {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--bb-primary);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.bb-hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--bb-text-light);
    margin-bottom: 2rem;
}

.bb-hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.bb-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--bb-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(19, 124, 197, 0.2);
}

.bb-btn-primary:hover {
    background: var(--bb-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(19, 124, 197, 0.3);
}

.bb-hero-stats {
    display: flex;
    gap: 2rem;
}

.bb-stat {
    text-align: center;
}

.bb-stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bb-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.bb-stat-label {
    font-size: 0.75rem;
    color: var(--bb-text-light);
    font-weight: 500;
}

.bb-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bb-logo-container {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--bb-border);
}

.bb-logo-img {
    max-width: 300px;
    height: auto;
}

.bb-hero-meta {
    display: flex;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--bb-border);
    flex-wrap: wrap;
}

.bb-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--bb-text-light);
    font-size: 0.9rem;
}

.bb-meta-item i {
    color: var(--bb-primary);
    font-size: 0.9rem;
}

/* Sections */
.bb-section {
    padding: 5rem 0;
}

.bb-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.bb-section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.bb-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--bb-text);
}

.bb-section-subtitle {
    font-size: 1.1rem;
    color: var(--bb-text-light);
    line-height: 1.6;
}

/* Overview Section */
.bb-overview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.bb-overview-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--bb-border);
    text-align: center;
    transition: all 0.3s ease;
}

.bb-overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--bb-primary);
}

.bb-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(19, 124, 197, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.bb-card-icon i {
    color: var(--bb-primary);
    font-size: 1.5rem;
}

.bb-overview-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--bb-text);
}

.bb-overview-card p {
    font-size: 0.9rem;
    color: var(--bb-text-light);
    line-height: 1.5;
}

.bb-overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.bb-content-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bb-text);
}

.bb-content-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--bb-text-light);
}

/* Features Section */
.bb-features-section {
    background: var(--bb-bg-light);
}

.bb-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bb-feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--bb-border);
    transition: all 0.3s ease;
}

.bb-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--bb-primary);
}

.bb-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--bb-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.bb-feature-icon i {
    color: white;
    font-size: 1.75rem;
}

.bb-feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bb-text);
}

.bb-feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--bb-text-light);
    margin-bottom: 1rem;
}

.bb-feature-list {
    list-style: none;
    margin-top: 1rem;
}

.bb-feature-list li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--bb-text-light);
    font-size: 0.9rem;
}

.bb-feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--bb-primary);
    font-weight: bold;
}

/* Integrations Section */
.bb-integrations-section {
    background: white;
}

.bb-integrations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bb-integration-card {
    background: var(--bb-bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--bb-border);
    transition: all 0.3s ease;
}

.bb-integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--bb-primary);
    background: white;
}

.bb-integration-icon {
    width: 70px;
    height: 70px;
    background: var(--bb-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.bb-integration-icon i {
    color: white;
    font-size: 2rem;
}

.bb-integration-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bb-text);
    text-align: center;
}

.bb-integration-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--bb-text-light);
    margin-bottom: 1rem;
    text-align: center;
}

.bb-integration-list {
    list-style: none;
    margin-top: 1rem;
}

.bb-integration-list li {
    padding: 0.4rem 0;
    padding-left: 1.25rem;
    position: relative;
    color: var(--bb-text-light);
    font-size: 0.9rem;
}

.bb-integration-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--bb-primary);
    font-weight: bold;
}

/* Services Section */
.bb-services-section {
    background: var(--bb-bg-light);
}

.bb-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.bb-service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    border: 1px solid var(--bb-border);
    text-align: center;
    transition: all 0.3s ease;
}

.bb-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--bb-primary);
}

.bb-service-icon {
    width: 70px;
    height: 70px;
    background: var(--bb-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.bb-service-icon i {
    color: white;
    font-size: 2rem;
}

.bb-service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bb-text);
}

.bb-service-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--bb-text-light);
}

/* Project Management Section */
.bb-pm-section {
    background: white;
}

.bb-pm-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.bb-pm-block {
    background: var(--bb-bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--bb-border);
    transition: all 0.3s ease;
}

.bb-pm-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--bb-primary);
    background: white;
}

.bb-pm-block h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--bb-text);
}

.bb-pm-block p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--bb-text-light);
    margin-bottom: 1rem;
}

.bb-pm-list {
    list-style: none;
    margin-top: 1rem;
}

.bb-pm-list li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--bb-text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.bb-pm-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--bb-primary);
    font-weight: bold;
}

/* Technologies Section */
.bb-tech-section {
    background: var(--bb-bg-light);
}

.bb-tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.bb-tech-group {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--bb-border);
}

.bb-tech-group h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--bb-text);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bb-border);
}

.bb-tech-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bb-tech-item {
    padding: 0.6rem 1rem;
    background: rgba(19, 124, 197, 0.05);
    color: var(--bb-primary);
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
}

.bb-tech-item:hover {
    background: var(--bb-primary);
    color: white;
    transform: translateX(5px);
}

/* Navigation Section */
.bb-nav-section {
    background: white;
}

.bb-nav-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.bb-nav-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: var(--bb-bg-light);
    border: 1px solid var(--bb-border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bb-nav-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--bb-primary);
}

.bb-nav-btn i {
    color: var(--bb-primary);
    font-size: 1.25rem;
}

.bb-nav-label {
    display: block;
    font-size: 0.85rem;
    color: var(--bb-text-light);
    margin-bottom: 0.25rem;
}

.bb-nav-title {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--bb-text);
}

/* Footer */
.bb-footer {
    padding: 3rem 0;
    text-align: center;
    border-top: 1px solid var(--bb-border);
}

.bb-footer p {
    font-size: 1rem;
    color: var(--bb-text-light);
}

.bb-footer a {
    color: var(--bb-primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.bb-footer a:hover {
    color: var(--bb-primary-dark);
}

/* Responsive Design */
@media (max-width: 992px) {
    .bb-nav-links {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 60px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .bb-nav-links.active {
        right: 0;
    }
    
    .bb-menu-toggle {
        display: flex;
    }
    
    .bb-hero-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .bb-hero-title {
        font-size: 2.5rem;
    }
    
    .bb-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bb-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bb-integrations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bb-services-grid {
        grid-template-columns: 1fr;
    }
    
    .bb-pm-content {
        grid-template-columns: 1fr;
    }
    
    .bb-tech-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bb-hero {
        padding: 4rem 0 3rem;
    }
    
    .bb-hero-title {
        font-size: 2rem;
    }
    
    .bb-hero-tagline {
        font-size: 1.25rem;
    }
    
    .bb-hero-description {
        font-size: 1rem;
    }
    
    .bb-hero-stats {
        gap: 1.5rem;
    }
    
    .bb-section {
        padding: 3rem 0;
    }
    
    .bb-section-title {
        font-size: 2rem;
    }
    
    .bb-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .bb-overview-content {
        grid-template-columns: 1fr;
    }
    
    .bb-features-grid {
        grid-template-columns: 1fr;
    }
    
    .bb-integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .bb-tech-grid {
        grid-template-columns: 1fr;
    }
    
    .bb-nav-buttons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .bb-container {
        padding: 0 1rem;
    }
    
    .bb-hero-title {
        font-size: 1.75rem;
    }
    
    .bb-hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bb-section-title {
        font-size: 1.75rem;
    }
}

