/* ==========================================
   BKC Global Next - Main Stylesheet
   Theme: Pink & White
   Color Palette:
   - Primary: #E6005C
   - Primary Dark: #A60050
   - Text Dark: #333333
   - White: #FFFFFF
   - Light Gray: #F4F4F4
   ========================================== */

/* CSS Variables */
:root {
    --primary: #E6005C;
    --primary-dark: #A60050;
    --primary-light: #FF3385;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #FFFFFF;
    --light-gray: #F4F4F4;
    --gray: #E0E0E0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
    --border-radius: 12px;
    --border-radius-lg: 20px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Prompt', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.text-primary {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(230, 0, 92, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(230, 0, 92, 0.5);
}

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

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

.btn-service {
    background: var(--primary);
    color: var(--white);
    padding: 10px 24px;
    font-size: 14px;
}

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

.btn-nav {
    background: var(--primary);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
}

.btn-nav:hover {
    background: var(--primary-dark);
}

/* ==========================================
   Navigation
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

.nav-menu a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:not(.btn-nav):hover::after {
    width: 100%;
}

.nav-menu a:not(.btn-nav):hover {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==========================================
   Hero Section
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF5F8 0%, #FFFFFF 50%, #FFF0F5 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
    opacity: 0.1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero-title .brand-name {
    display: block;
    color: var(--primary);
    font-size: 1.2em;
    margin-bottom: 10px;
}

.hero-title .highlight {
    display: block;
    color: var(--text-dark);
    font-size: 0.9em;
}

.hero-title .sub-highlight {
    display: block;
    color: var(--primary);
    font-size: 1em;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    font-size: 14px;
}

.feature-item i {
    color: var(--primary);
    font-size: 18px;
}

.hero-image {
    position: relative;
    z-index: 10;
}

.hero-image img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

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

/* ==========================================
   Section Styles
   ========================================== */
section {
    padding: 100px 0;
}

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

.section-header.light {
    color: var(--white);
}

.section-header.light .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-header.light .underline {
    background: var(--white);
}

.section-tag {
    display: inline-block;
    background: rgba(230, 0, 92, 0.1);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

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

.section-header.light .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--primary-dark));
    margin: 0 auto;
    border-radius: 2px;
}

/* ==========================================
   About Section
   ========================================== */
.about {
    background: var(--white);
}

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

.about-text p {
    margin-bottom: 20px;
}

.about-text .lead {
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-list {
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-list li:hover {
    transform: translateX(10px);
    background: #FFF0F5;
}

.about-list li i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 3px;
}

.about-list li strong {
    color: var(--primary);
}

.about-quote {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 25px;
    border-radius: var(--border-radius);
    position: relative;
}

.about-quote i {
    font-size: 24px;
    opacity: 0.5;
    margin-bottom: 10px;
}

.about-quote p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 10px;
}

.about-quote span {
    font-size: 14px;
    opacity: 0.8;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge .badge-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
}

.about-badge .badge-text {
    font-size: 14px;
}

/* ==========================================
   Why Us Section
   ========================================== */
.why-us {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 100px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.why-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon i {
    font-size: 32px;
    color: var(--primary);
}

.why-card h3 {
    color: var(--white);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.why-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

/* ==========================================
   Services Section
   ========================================== */
.services {
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #FFF0F5, #FFE4EC);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 36px;
    color: var(--primary);
}

.service-card h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-features {
    text-align: left;
    margin-bottom: 20px;
}

.service-features li {
    font-size: 13px;
    color: var(--text-dark);
    padding: 5px 0;
}

.service-features li i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 12px;
}

/* ==========================================
   Pricing Section
   ========================================== */
.pricing {
    background: var(--white);
}

.pricing-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 30px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.tab-btn.active,
.tab-btn:hover {
    background: var(--primary);
    color: var(--white);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 25px;
    text-align: center;
}

.pricing-header.sea {
    background: linear-gradient(135deg, #0077B6, #023E8A);
}

.pricing-header i {
    font-size: 40px;
    margin-bottom: 10px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.delivery-time {
    font-size: 14px;
    opacity: 0.9;
}

.pricing-body {
    padding: 25px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
    padding: 12px 10px;
    text-align: center;
    border-bottom: 1px solid var(--gray);
    font-size: 14px;
}

.pricing-table th {
    background: var(--light-gray);
    font-weight: 600;
    font-size: 13px;
}

.pricing-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.pricing-table strong {
    color: var(--primary);
    font-size: 18px;
}

.pricing-note {
    margin-top: 15px;
    padding: 12px;
    background: #FFF0F5;
    border-radius: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.pricing-note i {
    color: var(--primary);
    margin-right: 5px;
}

.pricing-disclaimer {
    text-align: center;
    margin-top: 30px;
    padding: 20px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 14px;
    color: var(--text-light);
}

.pricing-disclaimer i {
    color: #FFA500;
    margin-right: 8px;
}

/* ==========================================
   Cost & Time Section
   ========================================== */
.cost-time {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.cost-time-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.cost-card,
.time-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.cost-card h3,
.time-card h3 {
    color: var(--primary);
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.cost-card h3 i,
.time-card h3 i {
    margin-right: 10px;
}

.cost-items,
.time-items {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.cost-item,
.time-item {
    text-align: center;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    min-width: 130px;
}

.cost-icon,
.time-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: #FFF0F5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cost-icon i,
.time-icon i {
    font-size: 20px;
    color: var(--primary);
}

.cost-text,
.time-text {
    font-size: 12px;
    line-height: 1.4;
}

.cost-text small,
.time-text small {
    color: var(--text-light);
    font-size: 10px;
}

.cost-plus,
.time-plus {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

/* ==========================================
   Calculate Section
   ========================================== */
.calculate {
    background: var(--light-gray);
}

.calculate-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.calculate-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    min-width: 320px;
}

.calculate-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 25px;
}

.calculate-image {
    margin-bottom: 25px;
}

.calculate-image i {
    font-size: 80px;
    color: var(--primary);
}

.calculate-formula p {
    font-size: 14px;
    margin-bottom: 10px;
}

.calculate-formula .formula {
    background: var(--light-gray);
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 12px;
    color: var(--text-light);
}

.calculate-vs {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.calculate-note {
    text-align: center;
    margin-top: 40px;
    padding: 15px 25px;
    background: #FFF0F5;
    border-radius: 50px;
    display: inline-block;
    font-size: 14px;
}

.calculate-note i {
    color: #FFA500;
    margin-right: 8px;
}

/* ==========================================
   How to Order Section
   ========================================== */
.how-to-order {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    position: relative;
}

.steps-timeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow);
}

.step-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 25px 15px;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 24px;
    color: var(--primary);
}

.step-content h3 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 8px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
}

/* ==========================================
   Gallery Section
   ========================================== */
.gallery {
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(230, 0, 92, 0.8), rgba(166, 0, 80, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-overlay i {
    color: var(--white);
    font-size: 32px;
    transform: scale(0.5);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ==========================================
   CTA Section
   ========================================== */
.cta {
    background: linear-gradient(135deg, #FFF0F5, #FFE4EC);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.btn-cta-primary {
    background: #06C755;
    color: var(--white);
    padding: 16px 32px;
    font-size: 18px;
}

.btn-cta-primary:hover {
    background: #05A847;
    transform: translateY(-3px);
}

.btn-cta-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 30px;
    font-size: 18px;
}

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

/* ==========================================
   Contact Section
   ========================================== */
.contact {
    background: var(--light-gray);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.contact-tagline {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}

.contact-icon i {
    font-size: 20px;
    color: var(--primary);
}

.contact-text strong {
    display: block;
    font-size: 14px;
    color: var(--text-light);
}

.contact-text a,
.contact-text span {
    font-size: 16px;
    color: var(--text-dark);
}

.contact-text a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-link i {
    font-size: 18px;
    color: var(--text-dark);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-5px);
}

.social-link:hover i {
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.contact-form h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    padding: 16px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(230, 0, 92, 0.4);
}

/* ==========================================
   Footer
   ========================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.8;
}

.footer h4 {
    font-size: 16px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary);
}

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

.footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: var(--transition);
}

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

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.footer-contact ul li i {
    color: var(--primary);
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================
   Back to Top & Line Float
   ========================================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.line-float {
    position: fixed;
    bottom: 100px;
    right: 30px;
    background: #06C755;
    color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
}

.line-float i {
    font-size: 24px;
}

.line-float:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(6, 199, 85, 0.4);
}

/* ==========================================
   Responsive Design
   ========================================== */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-timeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 40px;
    }
    
    .steps-timeline::before {
        display: none;
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .cost-time-grid {
        grid-template-columns: 1fr;
    }
    
    .calculate-grid {
        flex-direction: column;
    }
    
    .calculate-vs {
        transform: rotate(90deg);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: var(--transition);
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .line-float span {
        display: none;
    }
    
    .line-float {
        padding: 15px;
        border-radius: 50%;
    }
    
    .back-to-top {
        right: 20px;
        bottom: 20px;
    }
    
    .line-float {
        right: 20px;
        bottom: 80px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .about-badge {
        position: static;
        margin-top: 20px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 8px 5px;
        font-size: 12px;
    }
    
    .pricing-table strong {
        font-size: 14px;
    }
}
