/* Minimal, clean styles */

/* Ensure page always starts at top and prevent zoom/scroll */
html {
	scroll-behavior: auto;
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	scroll-behavior: auto;
	overflow-x: hidden;
	width: 100%;
	max-width: 100vw;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	-webkit-tap-highlight-color: transparent;
}

/* Portfolio Page Styles */
.portfolio-hero {
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 60px 0 20px !important;
	text-align: center;
	color: white;
}

.portfolio-hero h1 {
	font-size: 3.5rem;
	font-weight: 700;
	margin-bottom: 1rem;
	background: linear-gradient(45deg, #fff, #f0f0f0);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
}

.portfolio-hero p {
	font-size: 1.2rem;
	opacity: 0.9;
	max-width: 600px;
	margin: 0 auto;
}

.projects-section {
	padding: 80px 0;
	background: #f8f9fa;
}

.projects-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
	margin-top: 3rem;
}

.project-card {
	background: white;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
	transition: all 0.3s ease;
	position: relative;
}

.project-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
	transform: scale(1.05);
}

.project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
	opacity: 0;
	transition: opacity 0.3s ease;
	display: flex;
	align-items: center;
	justify-content: center;
}

.project-card:hover .project-overlay {
	opacity: 1;
}

.view-project-btn {
	background: white;
	color: #667eea;
	padding: 12px 24px;
	border-radius: 25px;
	text-decoration: none;
	font-weight: 600;
	transform: translateY(20px);
	transition: transform 0.3s ease;
}

.project-card:hover .view-project-btn {
	transform: translateY(0);
}

.project-content {
	padding: 2rem;
}

.project-header {
	display: flex;
	align-items: center;
	margin-bottom: 1rem;
}

.company-logo {
	width: 50px;
	height: 50px;
	border-radius: 12px;
	margin-right: 1rem;
	object-fit: cover;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.project-info h3 {
	font-size: 1.3rem;
	font-weight: 600;
	color: #333;
	margin: 0;
}

.project-info .company-name {
	color: #666;
	font-size: 0.9rem;
	margin-top: 0.25rem;
}

.project-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 1rem;
}

.project-tag {
	background: #f0f0f0;
	color: #666;
	padding: 0.25rem 0.75rem;
	border-radius: 15px;
	font-size: 0.8rem;
	font-weight: 500;
}

.project-tag.primary {
	background: linear-gradient(45deg, #667eea, #764ba2);
	color: white;
}

/* Portfolio Mobile Responsive */
@media (max-width: 768px) {
	.portfolio-hero {
		padding: 60px 0 20px !important;
	}
	
	.portfolio-hero h1 {
		font-size: 2.5rem;
	}
	
	.portfolio-hero p {
		font-size: 1rem;
		padding: 0 1rem;
	}
	
	.projects-section {
		padding: 60px 0;
	}
	
	.projects-grid {
		grid-template-columns: 1fr;
		gap: 1.5rem;
		padding: 0 1rem;
	}
	
	.project-card {
		border-radius: 15px;
	}
	
	.project-image {
		height: 200px;
	}
	
	.project-content {
		padding: 1.5rem;
	}
	
	.project-header {
		margin-bottom: 0.75rem;
	}
	
	.company-logo {
		width: 40px;
		height: 40px;
		margin-right: 0.75rem;
	}
	
	.project-info h3 {
		font-size: 1.1rem;
	}
}

@media (max-width: 480px) {
	.portfolio-hero h1 {
		font-size: 2rem;
	}
	
	.projects-grid {
		padding: 0 0.5rem;
	}
	
	.project-content {
		padding: 1rem;
	}
}
:root { --bg:#0c0f14; --card:#151a21; --text:#e7edf5; --muted:#9fb1c7; --accent:linear-gradient(135deg,#ED1C35,#F6881F); }
*{ box-sizing:border-box; }
body{ margin:0; font-family:'Space Grotesk',system-ui,-apple-system,Segoe UI,Roboto,Arial; background:var(--bg); color:var(--text);
	background-image:
		linear-gradient(to right, rgba(255,255,255,0.02) 1px, transparent 1px),
		linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
	background-size: 32px 32px, 32px 32px;
	background-attachment: fixed;
	padding-top: 80px;
}
.no-scroll { overflow: hidden !important; height: 100vh; }
.container{ width:min(1100px, 92%); margin:0 auto; }
.hero{ position:relative; }
.hero::before{ content:""; position:absolute; inset:-40px 0 auto 0; height:460px; background:radial-gradient(60% 60% at 20% 10%, rgba(237,28,53,.18), rgba(246,136,31,.08) 40%, transparent 65%),
	radial-gradient(60% 60% at 80% 0%, rgba(246,136,31,.15), rgba(237,28,53,.06) 45%, transparent 70%);
	filter:saturate(1.2); pointer-events:none; z-index:-1; }
.hero::after{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, rgba(8,12,16,0) 0%, rgba(8,12,16,.25) 60%, rgba(8,12,16,0) 100%); pointer-events:none; z-index:-1; }
.navbar{ position:fixed; top:0; left:0; right:0; z-index:1000; backdrop-filter:saturate(180%) blur(8px); background:rgba(12,15,20,.8); border-bottom:1px solid #1e2630; }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; }
.logo{ width:36px; height:36px; border-radius:10px; background:linear-gradient(135deg,#ED1C35,#F6881F); color:#fff; display:grid; place-items:center; font-weight:800; }
.logo-img{ height:32px; width:auto; display:block; }
.logo-img{ filter: invert(1) brightness(1.6) contrast(1.1); }
.nav-links a{ 
	color:var(--muted); 
	margin:0 12px; 
	text-decoration:none; 
	font-weight:500;
	font-size:15px;
	font-family:'Space Grotesk',sans-serif;
	padding:8px 12px;
	border-radius:8px;
	transition:all 0.3s ease;
	position:relative;
}

.nav-links a:hover{
	color:#60a5fa;
	background:rgba(59,130,246,0.1);
	transform:translateY(-1px);
}

.nav-links a.active{
	color:#60a5fa;
	font-weight:600;
	position: relative;
}

.nav-links a.active::after{
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	height: 2px;
	background: linear-gradient(90deg, #ED1C35, #F6881F);
	border-radius: 1px;
}

/* Home Link Special Styling - Removed to match contact button */

/* Build Your Plan Link Special Styling */
.build-plan-link {
    background: linear-gradient(135deg, #ED1C35, #F6881F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-shadow: 0 0 20px rgba(237, 28, 53, 0.3);
}

.build-plan-link:hover {
    background: linear-gradient(135deg, #ED1C35, #F6881F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background: rgba(237, 28, 53, 0.15);
    -webkit-text-fill-color: #ED1C35;
    text-shadow: 0 0 25px rgba(237, 28, 53, 0.5);
}

/* Mobile Build Plan Link Gradient */
.mobile-nav-link.build-plan-link span,
.mobile-dd-link.build-plan-link span {
    background: linear-gradient(135deg, #ED1C35, #F6881F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    text-shadow: 0 0 15px rgba(237, 28, 53, 0.4);
}

/* Build Your Plan Page Styles */
.build-plan-container {
    min-height: 100vh;
    background: transparent;
    padding-top: 0px;
}

.plan-hero {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    padding: 4rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.plan-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #059669, #047857);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(16, 185, 129, 0.3);
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.plan-builder {
    padding: 1rem 0;
}

.builder-grid {
    display: block;
    width: min(1100px, 92%);
    margin: 0 auto;
}

.builder-form {
    background: transparent;
    backdrop-filter: none;
    border: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
}

.form-section {
    margin-bottom: 0.5rem;
}

/* Divider between first and second section */
.form-section:first-child::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    margin: 1.5rem 0;
}

.form-section:last-child {
    margin-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

.section-title i {
    color: #10b981;
    font-size: 1.25rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

/* Redesigned first section - Professional layout */
.form-section:first-child {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 1.5rem;
    backdrop-filter: none;
}

.form-section:first-child .form-group {
    margin-bottom: 0;
}

/* Input row container */
.inputs-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

/* Second row with business type and platform selection */
.inputs-row:nth-child(2) {
    display: flex;
    gap: 1.5rem;
}

.inputs-row .form-group {
    margin-bottom: 0;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text);
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-input::placeholder {
    color: var(--muted);
}

.form-error {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

/* Business Type and Platform Selection Styles */
.business-type-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.platform-selection-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.business-type-group .form-label,
.platform-selection-group .form-label {
    margin-bottom: 0.5rem;
}

.platform-selection-form {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.platform-selection-form:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.platform-options-form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}

.platform-option-form {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.platform-option-form:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

.platform-option-form.selected {
    background: linear-gradient(135deg, #ED1C35, #F6881F);
    border-color: #ED1C35;
    box-shadow: 0 4px 12px rgba(237, 28, 53, 0.3);
}

.platform-option-form.selected::after {
    content: '✓';
    position: absolute;
    top: -5px;
    right: -5px;
    width: 16px;
    height: 16px;
    background: #ED1C35;
    color: white;
    border-radius: 50%;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.platform-option-form i {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.platform-option-form.selected i {
    color: white;
}

.platform-selection-note {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-top: 0.5rem;
}

/* Platform-specific colors */
.platform-option-form[data-platform="facebook"]:hover {
    background: rgba(24, 119, 242, 0.2);
    border-color: rgba(24, 119, 242, 0.4);
}

.platform-option-form[data-platform="instagram"]:hover {
    background: rgba(225, 48, 108, 0.2);
    border-color: rgba(225, 48, 108, 0.4);
}

.platform-option-form[data-platform="youtube"]:hover {
    background: rgba(255, 0, 0, 0.2);
    border-color: rgba(255, 0, 0, 0.4);
}

.platform-option-form[data-platform="linkedin"]:hover {
    background: rgba(0, 119, 181, 0.2);
    border-color: rgba(0, 119, 181, 0.4);
}

.platform-option-form[data-platform="tiktok"]:hover {
    background: rgba(0, 0, 0, 0.2);
    border-color: rgba(0, 0, 0, 0.4);
}

.platform-option-form[data-platform="twitter"]:hover {
    background: rgba(29, 161, 242, 0.2);
    border-color: rgba(29, 161, 242, 0.4);
}

/* ========================================
   BUILD PLAN PAGE MOBILE RESPONSIVENESS
   ======================================== */

/* Mobile First Approach - Base styles for mobile */
@media (max-width: 768px) {
    /* Build Plan Container */
    .build-plan-container {
        padding: 0.5rem;
        margin-top: 70px;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .plan-builder {
        padding: 0.5rem 0;
        width: 100%;
    }
    
    .container {
        padding: 0 0.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Form Section Mobile */
    .form-section {
        margin-bottom: 1.5rem;
        padding: 1rem;
        border-radius: 12px;
        width: 100%;
        box-sizing: border-box;
    }
    
    /* Input Rows - Stack vertically on mobile */
    .inputs-row {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Second row with business type and platform selection */
    .inputs-row:nth-child(2) {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    
    /* Form Groups */
    .form-group {
        margin-bottom: 1rem;
    }
    
    .business-type-group,
    .platform-selection-group {
        width: 100%;
    }
    
    /* Platform Selection Mobile */
    .platform-selection-form {
        height: auto;
        min-height: 60px;
        padding: 0.75rem;
    }
    
    .platform-options-form {
        gap: 0.75rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .platform-option-form {
        width: 40px;
        height: 40px;
    }
    
    .platform-option-form i {
        font-size: 18px;
    }
    
    /* Duration Options Mobile */
    .duration-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .duration-option {
        width: 100%;
    }
    
    .duration-card {
        padding: 1rem;
        text-align: center;
    }
    
    /* Basic Plan Card Mobile */
    .basic-plan-card {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .basic-plan-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .basic-plan-price-badge {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
        top: 10px;
        right: 10px;
    }
    
    .basic-plan-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .basic-feature {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    /* Services Grid Mobile - 4 columns */
    .services-list {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.4rem;
        padding: 0;
        margin: 0;
        width: 100%;
    }
    
    .service-card {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
        min-height: 120px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    
    .service-card.selected {
        border: 2px solid rgba(16, 185, 129, 0.6);
        background: rgba(16, 185, 129, 0.1);
        box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    }
    
    .service-card.selected .service-name {
        background: rgba(16, 185, 129, 0.2);
        color: rgba(16, 185, 129, 1);
        font-weight: 700;
    }
    
    .service-image {
        height: 70px;
        width: 100%;
        overflow: hidden;
        position: relative;
        background: linear-gradient(135deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
    }
    
    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .service-card:hover .service-image img {
        transform: scale(1.05);
    }
    
    .service-name {
        font-size: 0.65rem;
        padding: 0.5rem 0.3rem;
        text-align: center;
        font-weight: 600;
        background: rgba(255, 255, 255, 0.1);
        border-top: 1px solid rgba(255, 255, 255, 0.15);
        line-height: 1.3;
        min-height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    /* Service Controls Mobile - Compact for 4 columns */
    .service-quantity-controls {
        padding: 0.4rem 0.3rem;
        gap: 0.4rem;
        justify-content: center;
        background: rgba(255, 255, 255, 0.05);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 32px;
        display: flex;
        align-items: center;
    }
    
    .quantity-btn {
        width: 24px;
        height: 24px;
        font-size: 12px;
        border-radius: 6px;
        background: linear-gradient(135deg, rgba(16, 185, 129, 0.8), rgba(5, 150, 105, 0.8));
        border: 1px solid rgba(16, 185, 129, 0.3);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        flex-shrink: 0;
        font-weight: bold;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .quantity-btn:hover {
        background: linear-gradient(135deg, rgba(16, 185, 129, 1), rgba(5, 150, 105, 1));
        transform: scale(1.1);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    }
    
    .quantity-input {
        width: 36px;
        height: 24px;
        font-size: 11px;
        text-align: center;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 6px;
        color: white;
        flex-shrink: 0;
        font-weight: 600;
    }
    
    .quantity-input:focus {
        outline: none;
        border-color: rgba(16, 185, 129, 0.5);
        background: rgba(16, 185, 129, 0.1);
    }
    
    .service-toggle-controls {
        padding: 0.4rem 0.3rem;
        background: rgba(255, 255, 255, 0.05);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .service-note {
        font-size: 0.6rem;
        padding: 0.3rem 0.4rem;
        text-align: center;
        color: rgba(255, 255, 255, 0.8);
        background: rgba(16, 185, 129, 0.1);
        border: 1px solid rgba(16, 185, 129, 0.2);
        border-radius: 6px;
        margin: 0.2rem;
        line-height: 1.2;
        font-weight: 500;
    }
    
    /* Platform Selection in Services Mobile - Compact */
    .platform-selection {
        padding: 0.4rem 0.3rem;
        min-height: 32px;
        background: rgba(255, 255, 255, 0.05);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .platform-options {
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
        display: flex;
        align-items: center;
    }
    
    .platform-option {
        width: 20px;
        height: 20px;
        border-radius: 4px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .platform-option:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    .platform-option.selected {
        background: linear-gradient(135deg, rgba(237, 28, 53, 0.8), rgba(246, 136, 31, 0.8));
        border-color: rgba(237, 28, 53, 0.5);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .platform-option i {
        font-size: 9px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .platform-option.selected i {
        color: white;
    }
    
    /* Pagination Mobile */
    .services-pagination {
        margin: 1rem 0;
        padding: 0 0.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    
    .pagination-btn {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .pagination-btn:hover:not(:disabled) {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(1.1);
    }
    
    .pagination-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }
    
    .pagination-info {
        font-size: 0.9rem;
        color: rgba(255, 255, 255, 0.8);
        font-weight: 500;
    }
    
    /* Recommendations Mobile */
    .recommendations-list {
        gap: 1rem;
    }
    
    .recommendation-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .rec-info {
        text-align: center;
    }
    
    .add-recommendation {
        width: 100%;
        padding: 0.75rem;
    }
    
    /* Submit Section Mobile */
    .submit-btn {
        width: 100%;
        padding: 1rem;
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .submit-note {
        text-align: center;
        font-size: 0.9rem;
        padding: 0 1rem;
    }
    
    /* Modal Mobile */
    .modal-content {
        width: 95%;
        max-width: 400px;
        margin: 1rem;
        padding: 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .success-message {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .plan-summary {
        font-size: 0.9rem;
    }
    
    .summary-item {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
    }
    
    .summary-service {
        font-size: 0.8rem;
        padding: 0.5rem;
    }
    
    .summary-total {
        font-size: 1rem;
        margin-top: 1rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .build-plan-container {
        padding: 0.25rem;
        margin-top: 60px;
    }
    
    .container {
        padding: 0 0.8rem;
    }
    
    .form-section {
        padding: 0.75rem;
        margin-bottom: 1rem;
        border-radius: 8px;
    }
    
    .basic-plan-card {
        padding: 0.75rem;
        margin: 1rem 0;
    }
    
    .basic-plan-price-badge {
        font-size: 0.8rem;
        padding: 0.3rem 0.6rem;
        top: 8px;
        right: 8px;
    }
    
    .basic-plan-features {
        gap: 0.5rem;
    }
    
    .basic-feature {
        font-size: 0.8rem;
        padding: 0.4rem;
    }
    
    .service-image {
        height: 65px;
    }
    
    .service-name {
        font-size: 0.6rem;
        padding: 0.4rem 0.25rem;
        min-height: 32px;
    }
    
    .service-quantity-controls {
        padding: 0.3rem 0.25rem;
        gap: 0.3rem;
        min-height: 28px;
    }
    
    .quantity-btn {
        width: 22px;
        height: 22px;
        font-size: 10px;
    }
    
    .quantity-input {
        width: 32px;
        height: 22px;
        font-size: 10px;
    }
    
    .platform-option-form {
        width: 32px;
        height: 32px;
    }
    
    .platform-option-form i {
        font-size: 14px;
    }
    
    .pagination-btn {
        width: 40px;
        height: 40px;
    }
    
    .submit-btn {
        padding: 0.875rem;
        font-size: 0.95rem;
    }
    
    .modal-content {
        width: 98%;
        margin: 0.25rem;
        padding: 0.75rem;
    }
    
    .modal-header h3 {
        font-size: 1rem;
    }
    
    .success-message {
        font-size: 0.8rem;
    }
}

/* Tablet Portrait */
@media (min-width: 769px) and (max-width: 1024px) {
    .services-list {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 1rem;
    }
    
    .service-card {
        min-height: 160px;
    }
    
    .service-image {
        height: 90px;
    }
    
    .service-name {
        font-size: 0.75rem;
        padding: 0.5rem 0.3rem;
    }
    
    .inputs-row {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
    
    .inputs-row:nth-child(2) {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
    
    .duration-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .basic-plan-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Large Mobile / Small Tablet */
@media (min-width: 481px) and (max-width: 768px) {
    .services-list {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0.75rem;
    }
    
    .service-card {
        min-height: 150px;
    }
    
    .service-image {
        height: 85px;
    }
    
    .service-name {
        font-size: 0.7rem;
        padding: 0.4rem 0.25rem;
    }
    
    .inputs-row:nth-child(2) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .duration-options {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .basic-plan-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .service-card {
        min-height: 200px;
    }
    
    .platform-option-form {
        min-width: 44px;
        min-height: 44px;
    }
    
    .quantity-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .pagination-btn {
        min-width: 44px;
        min-height: 44px;
    }
    
    .submit-btn {
        min-height: 48px;
    }
}

/* Extra small mobile devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    .build-plan-container {
        padding: 0.125rem;
    }
    
    .container {
        padding: 0 0.125rem;
    }
    
    .form-section {
        padding: 0.5rem;
    }
    
    .service-image {
        height: 55px;
    }
    
    .service-name {
        font-size: 0.55rem;
        padding: 0.35rem 0.2rem;
        min-height: 28px;
    }
    
    .quantity-btn {
        width: 20px;
        height: 20px;
        font-size: 9px;
    }
    
    .quantity-input {
        width: 28px;
        height: 20px;
        font-size: 9px;
    }
    
    .platform-option-form {
        width: 28px;
        height: 28px;
    }
    
    .platform-option-form i {
        font-size: 12px;
    }
    
    .pagination-btn {
        width: 36px;
        height: 36px;
    }
}

/* Ensure no horizontal scrolling on any mobile device */
@media (max-width: 768px) {
    * {
        box-sizing: border-box;
    }
    
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }
    
    .build-plan-container,
    .plan-builder,
    .container,
    .form-section,
    .services-list,
    .service-card {
        max-width: 100%;
        overflow-x: hidden;
    }
}

.services-list {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative;
    width: 100% !important;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card.selected {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.3);
    transform: translateY(-2px);
}

/* Small Clean Service Cards */
.service-image {
    position: relative;
    height: 120px;
    overflow: hidden;
    flex-shrink: 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.billing-tag {
    position: absolute;
    top: 8px;
    left: 8px;
    background: rgba(16, 185, 129, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 6px;
    padding: 0.3rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    z-index: 2;
}

.billing-tag .billing-type {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.selected-tag {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(34, 197, 94, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 0.4rem 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
    z-index: 2;
    animation: slideIn 0.3s ease;
}

.selected-tag span {
    font-size: 0.7rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.service-name {
    padding: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin: 0;
    line-height: 1.2;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-quantity-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.quantity-btn {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.quantity-btn:hover {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    transform: scale(1.05);
}

.quantity-btn:active {
    transform: scale(0.95);
}

.quantity-input {
    width: 50px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border-radius: 6px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.quantity-input:focus {
    outline: none;
    border-color: rgba(16, 185, 129, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.quantity-input[type=number] {
    -moz-appearance: textfield;
}

/* Services Pagination */
.services-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.25rem;
    padding: 0.25rem;
    margin-bottom: 0.25rem;
}

/* Services section has no padding */
.form-section:has(.services-list),
.form-section .services-list {
    padding: 0;
}

/* Target the services form section specifically */
.form-section:nth-of-type(3) {
    padding: 0;
}

.pagination-btn {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.pagination-btn:hover:not(:disabled) {
    background: rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.5);
    transform: scale(1.05);
}

.pagination-btn:active:not(:disabled) {
    transform: scale(0.95);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.pagination-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    backdrop-filter: blur(10px);
}

.pagination-info span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text);
}

.service-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.quantity-btn:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    transform: scale(1.05);
}

.quantity-input {
    width: 50px;
    height: 36px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
}

.quantity-input:focus {
    outline: none;
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.duration-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0;
}

.duration-option {
    cursor: pointer;
}

.duration-option input[type="radio"] {
    display: none;
}

.duration-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.duration-option:hover .duration-card {
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.02);
    transform: translateY(-2px);
}

.duration-option input[type="radio"]:checked + .duration-card {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    box-shadow: 0 0 0 1px rgba(16, 185, 129, 0.3);
}

.duration-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}

.duration-price {
    font-size: 0.9rem;
    color: #10b981;
    font-weight: 600;
}

/* Basic Plan Section Styles */
.basic-plan-card {
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 16px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    margin-top: 1.5rem;
    position: relative;
    overflow: visible;
}

.basic-plan-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.basic-plan-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.basic-plan-info {
    flex: 1;
}

.basic-plan-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem 0;
}

.basic-plan-price-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(45deg, #e74c3c, #c0392b, #e74c3c, #c0392b);
    background-size: 400% 400%;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    border: 2px solid #fff;
    z-index: 10;
    animation: gradientWave 3s ease-in-out infinite;
}

@keyframes gradientWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.basic-plan-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

.basic-plan-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.basic-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text);
}

.basic-feature i {
    color: #10b981;
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.basic-plan-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 51, 234, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.1);
}

.basic-plan-note i {
    color: #3b82f6;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.recommendations-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recommendation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 1rem;
    backdrop-filter: blur(10px);
}

.rec-info h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 0.25rem 0;
}

.rec-info p {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 0 0 0.5rem 0;
}

.rec-billing {
    font-size: 0.8rem;
    color: #10b981;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.add-recommendation {
    background: #10b981;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.add-recommendation:hover {
    background: #059669;
    transform: scale(1.05);
}

.cost-calculator {
    position: sticky;
    top: 100px;
}

.calculator-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

.calculator-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(16, 185, 129, 0.2);
}

.calculator-title i {
    color: #10b981;
    font-size: 1.25rem;
}

.cost-breakdown {
    margin-bottom: 1.5rem;
    max-height: 300px;
    overflow-y: auto;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    padding-right: 0;
    margin-right: -8px;
}

.cost-breakdown::-webkit-scrollbar {
    width: 6px;
    margin-left: 8px;
}

.cost-breakdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.cost-breakdown::-webkit-scrollbar-thumb {
    background: rgba(16, 185, 129, 0.6);
    border-radius: 3px;
}

.cost-breakdown::-webkit-scrollbar-thumb:hover {
    background: rgba(16, 185, 129, 0.8);
}

.breakdown-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 0.5rem;
    padding: 0.75rem 1rem 0.75rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    align-items: center;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item:hover {
    background: rgba(255, 255, 255, 0.03);
}

.service-name {
    font-weight: 600;
    color: var(--text);
    font-size: 0.9rem;
    text-align: left;
    padding-right: 0.5rem;
}

.service-amount {
    text-align: center;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    min-width: 40px;
}

.service-price {
    text-align: right;
    font-weight: 700;
    color: #10b981;
    font-size: 0.9rem;
    min-width: 80px;
    padding-left: 0.5rem;
}

.no-services {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.no-services i {
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 0.5rem;
}

.no-services span {
    font-size: 1rem;
    font-weight: 600;
}

.no-services small {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}


.cost-summary {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-bottom: 2rem;
}

.cost-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.cost-line:last-child {
    margin-bottom: 0;
}

.discount-line {
    color: #10b981;
    font-weight: 600;
}

.total-line {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.submit-btn:hover:not(.disabled) {
    background: linear-gradient(135deg, #059669, #047857);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
}

.submit-btn.disabled {
    background: rgba(255, 255, 255, 0.1);
    color: var(--muted);
    cursor: not-allowed;
    box-shadow: none;
}

.submit-note {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    font-size: 0.9rem;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.submit-note i {
    color: #10b981;
    font-size: 1rem;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.modal-content {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
}

.modal-close:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.05);
}

.modal-body {
    padding: 2rem;
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.success-message {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.plan-summary {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: left;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-services {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.summary-service {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--muted);
}

.summary-total {
    font-size: 1.2rem;
    font-weight: 700;
    color: #10b981;
    padding-top: 1rem;
    border-top: 2px solid rgba(16, 185, 129, 0.2);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .builder-grid {
        width: 92%;
        padding: 0;
    }
    
    .duration-options {
        grid-template-columns: 1fr;
    }
    
    .basic-plan-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .basic-plan-header {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .basic-plan-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .service-image {
        height: 100px;
    }
    
    .service-name {
        padding: 0.6rem;
        font-size: 0.8rem;
    }
    
    .service-quantity-controls {
        padding: 0.6rem;
        gap: 0.4rem;
    }
    
    .quantity-btn {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }
    
    .quantity-input {
        width: 45px;
        height: 28px;
        font-size: 0.8rem;
    }
    
    .billing-tag {
        top: 6px;
        left: 6px;
        padding: 0.25rem 0.4rem;
    }
    
    .billing-tag .billing-type {
        font-size: 0.6rem;
    }
    
    .selected-tag {
        top: 8px;
        right: 8px;
        padding: 0.3rem 0.5rem;
    }
    
    .selected-tag span {
        font-size: 0.65rem;
    }
    
    .services-pagination {
        margin-top: 0.2rem;
        padding: 0.2rem;
        margin-bottom: 0.2rem;
        gap: 0.75rem;
    }
    
    .pagination-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .pagination-info {
        padding: 0.4rem 0.8rem;
    }
    
    .pagination-info span {
        font-size: 0.8rem;
    }
    
    /* Stack inputs vertically on mobile */
    .inputs-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 0.75rem;
    }
    
    .form-section:first-child::after {
        margin: 1rem 0;
    }
    
    .form-section:first-child {
        padding: 0;
    }
    
    .modal-content {
        margin: 1rem;
        max-height: calc(100vh - 2rem);
    }
    
    .modal-header,
    .modal-body {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .plan-hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .builder-form {
        padding: 0;
    }
    
    .calculator-card {
        padding: 0.75rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .service-image {
        height: 120px;
    }
    
    .service-name {
        padding: 0.75rem;
        font-size: 0.85rem;
    }
    
    .service-quantity-controls {
        padding: 0.7rem;
        gap: 0.4rem;
    }
    
    .quantity-btn {
        width: 30px;
        height: 30px;
        font-size: 0.95rem;
    }
    
    .quantity-input {
        width: 48px;
        height: 30px;
        font-size: 0.85rem;
    }
    
    .billing-tag {
        top: 8px;
        left: 8px;
        padding: 0.3rem 0.5rem;
    }
    
    .billing-tag .billing-type {
        font-size: 0.7rem;
    }
    
    .selected-tag {
        top: 8px;
        right: 8px;
        padding: 0.35rem 0.55rem;
    }
    
    .selected-tag span {
        font-size: 0.68rem;
    }
    
    .services-pagination {
        margin-top: 0.15rem;
        padding: 0.15rem;
        margin-bottom: 0.15rem;
        gap: 0.5rem;
    }
    
    .pagination-btn {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
    }
    
    .pagination-info {
        padding: 0.3rem 0.6rem;
    }
    
    .pagination-info span {
        font-size: 0.75rem;
    }
}

/* Portfolio Link Special Gradient */
.portfolio-link {
	background: linear-gradient(45deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 600;
	text-shadow: 0 0 20px rgba(96, 165, 250, 0.3);
}

.portfolio-link:hover {
	background: linear-gradient(45deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	background: rgba(96, 165, 250, 0.15);
	-webkit-text-fill-color: #60a5fa;
	text-shadow: 0 0 25px rgba(96, 165, 250, 0.5);
}

/* Mobile Portfolio Link Gradient */
.mobile-nav-link.portfolio-link span,
.mobile-dd-link.portfolio-link span {
	background: linear-gradient(45deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	font-weight: 600;
	text-shadow: 0 0 15px rgba(96, 165, 250, 0.4);
}

.nav-cta{
	display:flex;
	align-items:center;
	gap:16px;
}

/* Language Selector */
.language-selector {
	position: relative;
}

.language-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	background: rgba(15, 20, 27, 0.6);
	border: 1px solid #1e2630;
	border-radius: 8px;
	color: #94a3b8;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	backdrop-filter: blur(10px);
	height: 48px;
	width: 48px;
}

.current-flag {
	font-size: 18px;
}

.language-btn i:last-child {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.language-btn.active i:last-child {
	transform: rotate(180deg);
}

.language-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	width: 200px;
	background: linear-gradient(135deg, #0a0e13 0%, #0f1419 50%, #0a0e13 100%);
	border: 1px solid #1e2630;
	border-radius: 12px;
	padding: 8px;
	margin-top: 8px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	backdrop-filter: blur(20px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	z-index: 1000;
}

.language-dropdown.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.language-option {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border-radius: 8px;
	color: #94a3b8;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	position: relative;
}

.language-option.active {
	background: rgba(59, 130, 246, 0.15);
	color: #60a5fa;
}

.lang-flag {
	font-size: 18px;
}

.lang-name {
	flex: 1;
}

/* Mobile Language Selector */
.mobile-language-selector {
	position: relative;
}

.mobile-language-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	background: rgba(15, 20, 27, 0.6);
	border: 1px solid #1e2630;
	border-radius: 10px;
	color: #94a3b8;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	backdrop-filter: blur(10px);
	transition: all 0.3s ease;
}

.mobile-language-btn:hover {
	background: rgba(18, 24, 33, 0.8);
	border-color: rgba(59, 130, 246, 0.4);
	color: #60a5fa;
}

.mobile-current-flag {
	font-size: 18px;
}

.mobile-language-btn i:last-child {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.mobile-language-btn.active i:last-child {
	transform: rotate(180deg);
}

.mobile-language-dropdown {
	position: fixed;
	top: 80px;
	right: 20px;
	width: 200px;
	background: linear-gradient(135deg, #0a0e13 0%, #0f1419 50%, #0a0e13 100%);
	border: 1px solid #1e2630;
	border-radius: 12px;
	padding: 12px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: all 0.3s ease;
	backdrop-filter: blur(20px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
	z-index: 1001;
}

.mobile-language-dropdown.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.mobile-language-option {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 12px 16px;
	border-radius: 8px;
	color: #94a3b8;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	position: relative;
	transition: all 0.3s ease;
}

.mobile-language-option:hover {
	background: rgba(59, 130, 246, 0.1);
	color: #60a5fa;
}

.mobile-language-option.active {
	background: rgba(59, 130, 246, 0.15);
	color: #60a5fa;
}

/* Mobile Controls */
.mobile-controls {
	display: none;
	align-items: center;
	gap: 12px;
}

/* Mobile Dropdown from toggle */
.mobile-dropdown {
	position: absolute;
	top: 100%;
	right: 0;
	margin-top: 10px;
	width: 260px;
	background: linear-gradient(135deg, #0a0e13 0%, #0f1419 60%, #0a0e13 100%);
	border: 1px solid #1e2630;
	border-radius: 14px;
	box-shadow: 0 20px 50px rgba(0,0,0,0.45);
	padding: 10px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(-8px) scale(0.98);
	transform-origin: top right;
	transition: opacity .25s ease, transform .25s ease, visibility .25s;
	z-index: 1002;
}

.mobile-dropdown.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0) scale(1);
}

.dd-list { display: flex; flex-direction: column; gap: 8px; }

.mobile-dd-link {
	display: flex; align-items: center; gap: 12px;
	padding: 14px 14px; border-radius: 12px;
	text-decoration: none; color: #e2e8f0; font-weight: 600; font-size: 15px;
	background: rgba(15,20,27,.35); border: 1px solid rgba(59,130,246,.12);
	transition: all .25s ease;
}

.mobile-dd-link i { width: 18px; text-align:center; color:#60a5fa; }

.mobile-dd-link:hover { background: rgba(59,130,246,.12); border-color: rgba(59,130,246,.35); transform: translateX(4px); }

.dropdown-cta {
	display:flex; align-items:center; justify-content:center; gap:10px;
	padding: 16px 14px; border-radius: 12px;
	text-decoration:none; color:#fff; font-weight:700; font-size:16px;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	background-size: 200% 200%;
	animation: gradient-flow 4s ease-in-out infinite;
	border: 1px solid rgba(255,255,255,.12);
}

.dropdown-cta .btn-badge { background: rgba(255,255,255,.25); border: 1px solid rgba(255,255,255,.35); border-radius: 8px; padding:2px 6px; font-size:10px; font-weight:800; letter-spacing:.05em; }

/* Mobile Menu Button */
.mobile-menu-btn {
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 44px;
	height: 44px;
	background: rgba(15, 20, 27, 0.6);
	border: 1px solid #1e2630;
	border-radius: 10px;
	cursor: pointer;
	padding: 0;
	z-index: 1001;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.mobile-menu-btn:hover {
	background: rgba(18, 24, 33, 0.8);
	border-color: rgba(59, 130, 246, 0.4);
}

.hamburger-line {
	width: 20px;
	height: 2px;
	background: #e2e8f0;
	margin: 2px 0;
	transition: all 0.3s ease;
	border-radius: 2px;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
	transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
	opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Side Menu */
.mobile-menu {
	position: fixed;
	top: 0;
	right: -100%;
	width: 100%;
	height: 100vh;
	z-index: 1000;
	transition: right 0.25s ease-out;
}

.mobile-menu.active {
	right: 0;
}

.mobile-menu-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: radial-gradient(circle at center, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
	backdrop-filter: blur(20px) saturate(180%);
	opacity: 0;
	transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.active .mobile-menu-overlay {
	opacity: 1;
}

.mobile-menu-content {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background: linear-gradient(180deg, #0a0e13 0%, #0f1419 30%, #151a21 70%, #0a0e13 100%);
	display: flex;
	flex-direction: column;
	transform: translateX(100%);
	transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	box-shadow: -20px 0 40px rgba(0, 0, 0, 0.5);
	overflow: hidden;
	backdrop-filter: blur(20px);
}

.mobile-menu.active .mobile-menu-content {
	transform: translateX(0);
}

.mobile-menu-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 32px 28px 24px;
	border-bottom: 1px solid rgba(59, 130, 246, 0.15);
	backdrop-filter: blur(10px);
	background: rgba(15, 20, 27, 0.3);
}

.mobile-logo .logo-img {
	height: 40px;
	width: auto;
	filter: invert(1) brightness(1.6) contrast(1.1);
	transition: all 0.3s ease;
}

.mobile-logo:hover .logo-img {
	transform: scale(1.05);
}

.mobile-menu-close {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: rgba(59, 130, 246, 0.1);
	border: 1px solid rgba(59, 130, 246, 0.3);
	color: #e2e8f0;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
}

.mobile-menu-close::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s ease;
}

.mobile-menu-close:hover {
	background: rgba(59, 130, 246, 0.2);
	border-color: rgba(59, 130, 246, 0.5);
	color: #60a5fa;
	transform: scale(1.05) rotate(90deg);
}

.mobile-menu-close:hover::before {
	left: 100%;
}

.mobile-nav-links {
	flex: 1;
	padding: 24px 10px;
	display: flex;
	flex-direction: column;
	gap: 8px;
	overflow-y: auto;
	overflow-x: hidden;
}

.mobile-nav-link {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px 24px;
	color: #e2e8f0;
	text-decoration: none;
	font-size: 17px;
	font-weight: 500;
	transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	position: relative;
	min-height: 64px;
	border-radius: 16px;
	background: rgba(15, 20, 27, 0.3);
	border: 1px solid rgba(59, 130, 246, 0.1);
	backdrop-filter: blur(10px);
	overflow: hidden;
}

.mobile-nav-link::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 5px;
	height: 100%;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	transform: scaleY(0);
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
	border-radius: 0 4px 4px 0;
}

.mobile-nav-link::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
	transition: left 0.6s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
	color: #60a5fa;
	background: rgba(59, 130, 246, 0.15);
	border-color: rgba(59, 130, 246, 0.3);
	transform: translateX(8px) scale(1.02);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.mobile-nav-link:hover::before,
.mobile-nav-link:active::before {
	transform: scaleY(1);
}

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

.mobile-nav-link i {
	width: 24px;
	height: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 18px;
	background: rgba(59, 130, 246, 0.1);
	border-radius: 8px;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.mobile-nav-link:hover i {
	background: rgba(59, 130, 246, 0.2);
	transform: scale(1.1);
}

.mobile-nav-link span {
	flex: 1;
	font-weight: 600;
	letter-spacing: 0.02em;
}

.mobile-menu-cta {
	padding: 24px 28px 32px;
	margin: 24px 0 0;
	border-top: 1px solid rgba(59, 130, 246, 0.15);
	background: rgba(15, 20, 27, 0.2);
	backdrop-filter: blur(10px);
}

.mobile-btn-app {
	width: 100%;
	justify-content: center;
	padding: 20px 24px;
	font-size: 17px;
	font-weight: 600;
	min-height: 64px;
	border-radius: 16px;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	background-size: 200% 200%;
	animation: gradient-flow 3s ease-in-out infinite;
	box-shadow: 0 8px 32px rgba(59, 130, 246, 0.3) !important;
	border: 1px solid rgba(255, 255, 255, 0.1);
	position: relative;
	overflow: hidden;
	letter-spacing: 0.02em;
}

.mobile-btn-app::before {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
	transition: left 0.6s ease;
}

.mobile-btn-app:hover {
	transform: translateY(-2px) scale(1.02);
	box-shadow: 0 12px 40px rgba(59, 130, 246, 0.4) !important;
}

.mobile-btn-app:hover::before {
	left: 100%;
}

.mobile-btn-app .btn-icon {
	font-size: 20px;
	animation: rocket-bounce 2s ease-in-out infinite;
}

.mobile-btn-app .btn-badge {
	background: rgba(255, 255, 255, 0.25);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	padding: 4px 8px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	animation: badge-pulse 2s ease-in-out infinite;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	body {
		padding-top: 80px;
	}
	
	.navbar {
		padding: 12px 0;
	}
	
	.nav-inner {
		justify-content: space-between;
		height: 56px;
		align-items: center;
	}
	
	.brand .logo-img {
		height: 28px;
	}
	
	.nav-links {
		display: none;
	}
	
	.nav-cta {
		display: none;
	}
	
	.language-selector {
		display: none;
	}
	
	.mobile-controls {
		display: flex;
	}
	
	.mobile-language-btn {
		width: 44px;
		height: 44px;
		font-size: 14px;
	}
	
	.mobile-menu-btn {
		display: flex;
		width: 44px;
		height: 44px;
	}
	
	.hamburger-line {
		width: 18px;
		height: 2px;
		margin: 2px 0;
	}
	
	/* Hero Section Mobile */
	.hero {
		padding: 80px 0 25px 0;
	}
	
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 24px;
		text-align: center;
	}
	
	.hero-copy {
		text-align: center;
		order: 2;
		padding: 0 8px;
	}
	
	.hero-art {
		order: 1;
	}
	
	.hero h1 {
		font-size: 20px;
		line-height: 1.1;
		margin-bottom: 6px;
	}
	
	.hero p {
		font-size: 11px;
		margin-bottom: 12px;
		line-height: 1.2;
	}
	
	.hero-actions {
		justify-content: center;
		gap: 12px;
		width: 97%;
		margin: 0 auto;
	}
	
	.btn-app {
		padding: 16px 24px;
		font-size: 16px;
		min-height: 56px;
		width: 100%;
	}
	
	.btn {
		padding: 14px 20px;
		font-size: 15px;
		min-height: 52px;
		width: 100%;
	}
	
	.art-wrap {
		display: none;
	}
	
	.mobile-banner-slider {
		display: block !important;
		position: relative;
		width: 97%;
		margin: 0 auto;
		height: calc(97vw * 0.4);
		border-radius: 16px;
		overflow: hidden;
		box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
		margin-top: 0;
		border: 2px solid rgba(59, 130, 246, 0.3);
	}
	
	.banner-track {
		position: relative;
		width: 100%;
		height: 100%;
	}
	
	.banner-slide {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		transition: opacity 0.6s ease-in-out;
	}
	
	.banner-slide.active {
		opacity: 1;
	}
	
	.banner-slide img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		filter: brightness(0.8) saturate(1.1);
	}
	
	.banner-dots {
		position: absolute;
		bottom: 12px;
		left: 50%;
		transform: translateX(-50%);
		display: flex;
		gap: 6px;
		z-index: 10;
	}
	
	.dot {
		width: 6px;
		height: 6px;
		border-radius: 50%;
		background: rgba(255, 255, 255, 0.5);
		cursor: pointer;
		transition: all 0.3s ease;
	}
	
	.dot.active {
		background: #60a5fa;
		transform: scale(1.3);
	}
	
	.orb {
		width: 100px;
		height: 100px;
		filter: blur(25px);
	}
	
	.image-scroller {
		height: 40px;
	}
	
	.scroller-track {
		gap: 20px;
		padding: 0 15px;
	}
	
	.scroller-item {
		font-size: 12px;
		padding: 6px 12px;
		gap: 6px;
		border-radius: 16px;
	}
	
	/* Marquee Section Mobile */
	.marquee-section {
		padding: 8px 0 0;
		margin-top: -15px;
		width: 100vw;
		margin-left: calc(-50vw + 50%);
	}
	
	.marquee-section .container {
		width: 100vw;
		margin-left: calc(-50vw + 50%);
	}
	
	/* Team Section Mobile */
	#team .container {
		width: 100vw;
		margin-left: calc(-50vw + 50%);
	}
	
	.team-marquee {
		width: 100vw;
		margin-left: calc(-50vw + 50%);
	}
	
	.marquee-row {
		gap: 16px;
	}
	
	.marquee-row .track {
		gap: 16px;
		padding: 8px 0;
	}
	
	.marquee-row span {
		padding: 6px 10px;
		font-size: 12px;
		font-weight: 600;
	}
	
	/* Contact Section Mobile */
	.contact-section {
		padding: 80px 0 25px 0;
	}
	
	.contact-header-section {
		margin-bottom: 25px;
	}
	
	.contact-header-section h2 {
		font-size: 24px;
		margin-bottom: 10px;
	}
	
	.contact-header-section p {
		font-size: 13px;
		line-height: 1.4;
	}
	
	.contact-wrapper {
		flex-direction: column;
		gap: 25px;
	}
	
	.contact-left,
	.contact-right {
		width: 100%;
	}
	
	.contact-methods {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	
	.social-media {
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;
		gap: 10px !important;
	}
	
	.social-btn span {
		display: none !important;
	}
	
	.social-btn {
		justify-content: center !important;
		padding: 10px !important;
		min-height: 40px;
	}
	
	.contact-item {
		padding: 10px !important;
		flex-direction: row !important;
		text-align: left !important;
		gap: 8px !important;
		align-items: center !important;
		background: rgba(15, 20, 27, 0.7) !important;
		border: 1px solid rgba(59, 130, 246, 0.2) !important;
		border-radius: 10px !important;
		backdrop-filter: blur(8px) !important;
		box-shadow: none !important;
		transform: none !important;
		min-height: 50px;
	}
	
	.contact-icon {
		width: 32px;
		height: 32px;
		font-size: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 6px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}
	
	.contact-details {
		flex: 1;
	}
	
	.contact-details h4 {
		font-size: 10px;
		margin-bottom: 2px;
		font-weight: 600;
		color: #ffffff;
		line-height: 1.2;
	}
	
	.contact-details p {
		font-size: 9px;
		margin-bottom: 0;
		color: #e5e7eb;
		line-height: 1.2;
	}
	
	.contact-note {
		display: none;
	}
	
	.contact-action {
		display: flex !important;
		width: 32px;
		height: 32px;
		font-size: 14px;
	}
	
	.quick-actions {
		gap: 10px;
		margin-bottom: 20px;
	}
	
	.quick-actions h3 {
		font-size: 16px;
		margin-bottom: 12px;
	}
	
	.social-connect h3 {
		font-size: 16px;
		margin-bottom: 12px;
	}
	
	.social-connect {
		gap: 12px;
	}
	
	.social-connect h3 {
		font-size: 18px;
		margin-bottom: 12px;
	}
}

@media (max-width: 480px) {
	body {
		padding-top: 72px;
	}
	
	.navbar {
		padding: 10px 0;
	}
	
	.nav-inner {
		height: 52px;
	}
	
	.brand .logo-img {
		height: 24px;
	}
	
	.mobile-language-btn {
		width: 40px;
		height: 40px;
		font-size: 13px;
	}
	
	.mobile-menu-btn {
		width: 40px;
		height: 40px;
	}
	
	.hamburger-line {
		width: 16px;
		height: 2px;
		margin: 2px 0;
	}
	
	.mobile-menu-content {
		width: 100%;
	}
	
	.mobile-nav-link {
		padding: 22px 24px;
		font-size: 18px;
		min-height: 68px;
		border-radius: 18px;
	}
	
	.mobile-nav-link i {
		width: 26px;
		height: 26px;
		font-size: 19px;
	}
	
	.mobile-btn-app {
		padding: 22px 24px;
		font-size: 18px;
		min-height: 68px;
		border-radius: 18px;
	}
	
	/* Hero Section Small Mobile */
	.hero {
		padding: 80px 0 15px 0;
	}
	
	.hero-inner {
		gap: 20px;
	}
	
	.hero-copy {
		padding: 0 8px;
	}
	
	.hero h1 {
		font-size: 18px;
		line-height: 1.1;
		margin-bottom: 4px;
	}
	
	.hero p {
		font-size: 10px;
		margin-bottom: 10px;
		line-height: 1.2;
	}
	
	.hero-actions {
		flex-direction: column;
		align-items: center;
		gap: 10px;
		width: 97%;
		margin: 0 auto;
	}
	
	.btn-app {
		width: 100%;
		justify-content: center;
		padding: 18px 24px;
		font-size: 17px;
		height: 60px;
		box-sizing: border-box;
	}
	
	.btn {
		width: 100%;
		text-align: center;
		padding: 16px 24px;
		font-size: 16px;
		min-height: 56px;
	}
	
	.art-wrap {
		display: none;
	}
	
	.mobile-banner-slider {
		height: calc(97vw * 0.4);
		border-radius: 12px;
		margin-top: 0;
		border: 1px solid rgba(59, 130, 246, 0.3);
	}
	
	.banner-dots {
		bottom: 8px;
		gap: 4px;
	}
	
	.dot {
		width: 5px;
		height: 5px;
	}
	
	.orb {
		width: 80px;
		height: 80px;
		filter: blur(20px);
	}
	
	.image-scroller {
		height: 35px;
	}
	
	.scroller-track {
		gap: 15px;
		padding: 0 10px;
	}
	
	.scroller-item {
		font-size: 11px;
		padding: 5px 10px;
		gap: 5px;
		border-radius: 14px;
	}
	
	/* Marquee Section Small Mobile */
	.marquee-section {
		padding: 6px 0 0;
		margin-top: -12px;
	}
	
	.marquee-row {
		gap: 12px;
	}
	
	.marquee-row .track {
		gap: 12px;
		padding: 6px 0;
	}
	
	.marquee-row span {
		padding: 4px 8px;
		font-size: 10px;
		font-weight: 600;
	}
	
	/* Contact Section Small Mobile */
	.contact-section {
		padding: 80px 0 25px 0;
	}
	
	.contact-header-section {
		margin-bottom: 25px;
	}
	
	.contact-header-section h2 {
		font-size: 24px;
		margin-bottom: 10px;
	}
	
	.contact-header-section p {
		font-size: 13px;
		line-height: 1.3;
	}
	
	.contact-wrapper {
		gap: 25px;
	}
	
	.contact-methods {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 10px;
	}
	
	.social-media {
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;
		gap: 10px !important;
	}
	
	.social-btn span {
		display: none !important;
	}
	
	.social-btn {
		justify-content: center !important;
		padding: 10px !important;
	}
	
	.contact-item {
		padding: 10px !important;
		flex-direction: row !important;
		text-align: left !important;
		gap: 10px !important;
		align-items: flex-start !important;
		background: rgba(15, 20, 27, 0.6) !important;
		border: 1px solid rgba(59, 130, 246, 0.2) !important;
		border-radius: 10px !important;
		backdrop-filter: blur(8px) !important;
		box-shadow: none !important;
		transform: none !important;
	}
	
	.contact-icon {
		width: 32px;
		height: 32px;
		font-size: 14px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 6px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
		margin-top: 2px;
	}
	
	.contact-details {
		flex: 1;
	}
	
	.contact-details h4 {
		font-size: 8px;
		margin-bottom: 1px;
		font-weight: 600;
		color: #ffffff;
	}
	
	.contact-details p {
		font-size: 7px;
		margin-bottom: 0;
		color: #e5e7eb;
	}
	
	.contact-note {
		display: none;
	}
	
	.contact-action {
		display: flex !important;
		width: 32px;
		height: 32px;
		font-size: 14px;
	}
	
	.quick-actions {
		gap: 10px;
	}
	
	.social-connect {
		gap: 10px;
	}
	
	.social-connect h3 {
		font-size: 16px;
		margin-bottom: 10px;
	}
}
.hero{ padding:40px 0; text-align:center; }
.hero-inner{ display:grid; gap:24px; grid-template-columns:1.1fr .9fr; align-items:center; }
.hero-copy{ text-align:left; }
.tag{ display:inline-block; font-size:12px; letter-spacing:.08em; text-transform:uppercase; padding:6px 10px; border-radius:999px; background:linear-gradient(135deg, rgba(237,28,53,0.1), rgba(246,136,31,0.1)); border:1px solid rgba(237,28,53,0.3); color:#ff6b6b; margin-bottom:10px; }
.hero h2{ font-size:36px; margin:0 0 8px; }
.hero h1{ font-size:56px; margin:0 0 12px; line-height:1.05; font-weight:700; letter-spacing:-0.02em; font-family:'Space Grotesk',sans-serif; background:linear-gradient(180deg,#ffffff,#ffd6d6); -webkit-background-clip:text; background-clip:text; color:transparent; }
.hero p{ color:var(--muted); margin:0 0 28px; font-size:18px; }
.hero-actions{ display:flex; gap:10px; flex-wrap:wrap; }
.btn{ 
	display:inline-flex; 
	align-items:center; 
	justify-content:center;
	gap:8px;
	padding:12px 20px; 
	border-radius:10px; 
	background:linear-gradient(135deg, rgba(38,50,66,0.8), rgba(30,38,50,0.9)); 
	border:1px solid rgba(59,130,246,0.2);
	color:#e2e8f0; 
	text-decoration:none; 
	font-weight:500;
	font-size:14px;
	transition:all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter:blur(10px);
	box-shadow:0 4px 15px rgba(0,0,0,0.2);
	position:relative;
	overflow:hidden;
}

.btn::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.5s ease;
}

.btn:hover {
	background:linear-gradient(135deg, rgba(59,130,246,0.15), rgba(139,92,246,0.1));
	border-color:rgba(59,130,246,0.4);
	color:#60a5fa;
	transform:translateY(-2px);
	box-shadow:0 8px 25px rgba(59,130,246,0.2);
}

.btn:hover::before {
	left: 100%;
}

.btn.primary{ background:var(--accent); color:#081a12; font-weight:600; }

/* Modern App Button */
.btn-app {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	background-size: 200% 200%;
	border: none;
	border-radius: 12px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: none;
	animation: gradient-flow 3s ease-in-out infinite;
	height: 48px;
	box-sizing: border-box;
}

.btn-app::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s ease;
}

.btn-app:hover::before {
	left: 100%;
}

.btn-app:hover {
	transform: none;
	box-shadow: none;
}

.btn-icon {
	font-size: 16px;
	animation: rocket-bounce 1.5s ease-in-out infinite;
}

.btn-text {
	position: relative;
	z-index: 2;
}

.btn-badge {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 6px;
	padding: 2px 6px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-transform: uppercase;
	animation: badge-pulse 1.8s ease-in-out infinite;
}

@keyframes gradient-flow {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes rocket-bounce {
	0%, 100% { 
		transform: translateY(0);
	}
	50% { 
		transform: translateY(-2px);
	}
}

@keyframes badge-pulse {
	0%, 100% { 
		background: rgba(255, 255, 255, 0.2);
		transform: scale(1);
	}
	50% { 
		background: rgba(255, 255, 255, 0.3);
		transform: scale(1.05);
	}
}

/* Button Group Styles */
.button-group {
	display: flex;
	align-items: center;
	gap: 6px;
}

.mobile-button-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-top: 6px;
}

.mobile-menu-button-group {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

/* CAST Button Styles */
.btn-cast {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: linear-gradient(135deg, #f59e0b, #ef4444, #ec4899);
	background-size: 200% 200%;
	border: none;
	border-radius: 12px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	animation: gradient-flow 3s ease-in-out infinite;
	height: 48px;
	box-sizing: border-box;
	width: auto;
	min-width: 100px;
}

.btn-cast::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s ease;
}

.btn-cast:hover::before {
	left: 100%;
}

.btn-cast:hover {
	transform: none;
	box-shadow: none;
}

.btn-cast .btn-icon {
	font-size: 14px;
	animation: cast-bounce 1.8s ease-in-out infinite;
}

.btn-cast .btn-text {
	position: relative;
	z-index: 2;
	font-weight: 700;
	letter-spacing: 0.5px;
}

/* Mobile CAST Button */
.mobile-btn-cast {
	width: 100%;
	justify-content: center;
	padding: 18px 24px;
	font-size: 17px;
	height: 60px;
	box-sizing: border-box;
}

/* Dropdown CAST Button */
.dropdown-cast {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 16px;
	background: linear-gradient(135deg, #f59e0b, #ef4444, #ec4899);
	background-size: 200% 200%;
	border: none;
	border-radius: 12px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	animation: gradient-shift 3s ease infinite;
	height: 48px;
	box-sizing: border-box;
}

.dropdown-cast:hover {
	transform: none;
	box-shadow: none;
}

/* CAST Button Animations */
@keyframes cast-bounce {
	0%, 100% { 
		transform: translateY(0) rotate(0deg);
	}
	25% { 
		transform: translateY(-2px) rotate(-5deg);
	}
	75% { 
		transform: translateY(-1px) rotate(5deg);
	}
}

@keyframes gradient-shift {
	0% { background-position: 0% 50%; }
	50% { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}

/* Download Button Styles */
.btn-download {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 20px;
	background: linear-gradient(135deg, #10b981, #059669, #047857);
	background-size: 200% 200%;
	border: none;
	border-radius: 12px;
	color: #fff;
	text-decoration: none;
	font-weight: 600;
	font-size: 14px;
	position: relative;
	overflow: hidden;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	animation: gradient-flow 3s ease-in-out infinite;
	height: 48px;
	box-sizing: border-box;
}

.btn-download::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
	transition: left 0.5s ease;
}

.btn-download:hover::before {
	left: 100%;
}

.btn-download:hover {
	transform: none;
	box-shadow: none;
}

.btn-download .btn-icon {
	font-size: 14px;
	animation: download-bounce 2s ease-in-out infinite;
}

.btn-download .btn-text {
	position: relative;
	z-index: 2;
	font-weight: 600;
}

/* Download Button Animation */
@keyframes download-bounce {
	0%, 100% { 
		transform: translateY(0);
	}
	50% { 
		transform: translateY(-2px);
	}
}
.hero-art{ display:grid; place-items:center; overflow:visible; }
.art-wrap{ 
	position:relative; 
	width:100%; 
	max-width:560px; 
	aspect-ratio:4/3; 
	border-radius:24px; 
	overflow:visible; 
	background:transparent; 
}

.art-wrap::before {
	content: "";
	position: absolute;
	top: -25px;
	left: -25px;
	right: -25px;
	bottom: -25px;
	background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, rgba(139, 92, 246, 0.2) 30%, rgba(239, 68, 68, 0.1) 60%, transparent 100%);
	border-radius: 50px;
	z-index: -3;
	filter: blur(30px);
	animation: glow-pulse 8s ease-in-out infinite;
}
.art-media{ 
	position:relative; 
	border-radius:24px; 
	overflow:visible; 
	box-shadow:0 40px 100px rgba(0,0,0,.6), 0 20px 40px rgba(59,130,246,.1);
	transform: perspective(1000px) rotateX(2deg) rotateY(-2deg);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.art-media:hover {
	transform: perspective(1000px) rotateX(0deg) rotateY(0deg) scale(1.02);
	box-shadow:0 50px 120px rgba(0,0,0,.7), 0 30px 60px rgba(59,130,246,.2);
}

.art-media::before{ 
	content:""; 
	position:absolute; 
	inset:0; 
	border-radius:24px; 
	padding:3px; 
	background:linear-gradient(135deg, rgba(59,130,246,.8), rgba(139,92,246,.6) 30%, rgba(239,68,68,.4) 60%, rgba(255,255,255,.1)); 
	-webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); 
	-webkit-mask-composite:xor; 
	mask-composite:exclude; 
	pointer-events:none;
	animation: border-glow 4s ease-in-out infinite;
}

.art-media::after {
	content: "";
	position: absolute;
	top: -15px;
	left: -15px;
	right: -15px;
	bottom: -15px;
	background: linear-gradient(45deg, #3b82f6, #8b5cf6, #ef4444, #3b82f6);
	background-size: 400% 400%;
	border-radius: 40px;
	z-index: -2;
	animation: gradient-rotate 6s ease infinite;
	opacity: 0.4;
	filter: blur(20px);
}

.art-media img{ 
	display:block; 
	width:100%; 
	height:100%; 
	object-fit:cover; 
	border-radius:22px; 
	filter: saturate(1.1) contrast(1.05) brightness(1.02);
	transition: all 0.4s ease;
}

.art-media:hover img {
	filter: saturate(1.2) contrast(1.1) brightness(1.05);
}
.art-wrap img{ width:100%; height:100%; object-fit:cover; opacity:1; filter:saturate(1.05) contrast(1.05); }

/* PC Banner Slider */
.pc-banner-slider {
	position: relative;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border: 3px solid rgba(59, 130, 246, 0.3);
}

/* Hide mobile banner slider on PC only */
@media (min-width: 769px) {
	.mobile-banner-slider {
		display: none !important;
	}
}

.pc-banner-slider .banner-track {
	position: relative;
	width: 100%;
	height: 100%;
}

.pc-banner-slider .banner-slide {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
}

.pc-banner-slider .banner-slide.active {
	opacity: 1;
}

.pc-banner-slider .banner-slide img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: brightness(0.8) saturate(1.1);
}

.pc-banner-slider .banner-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	display: flex;
	gap: 8px;
	z-index: 10;
}

.pc-banner-slider .dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.5);
	cursor: pointer;
	transition: all 0.3s ease;
}

.pc-banner-slider .dot.active {
	background: #60a5fa;
	transform: scale(1.3);
}
.orb{ position:absolute; width:150px; height:150px; border-radius:50%; filter:blur(35px); opacity:.6; z-index:-1; }
.orb-a{ background:linear-gradient(135deg,#3b82f6,#8b5cf6); top:-30px; right:-30px; }
.orb-b{ background:linear-gradient(135deg,#8b5cf6,#ef4444); bottom:-30px; left:-30px; }
.grid-blur{ display:none; }

/* Modern Image Scroller at bottom of hero image */
.image-scroller {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 45px;
	background: linear-gradient(135deg, rgba(5, 8, 12, 0.98), rgba(10, 14, 19, 0.95));
	border-top: 1px solid rgba(59, 130, 246, 0.3);
	backdrop-filter: blur(20px) saturate(180%);
	overflow: hidden;
	z-index: 10;
	border-radius: 0 0 22px 22px;
	box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.3);
}

.image-scroller::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
	animation: shimmer-line 3s ease-in-out infinite;
}

.scroller-track {
	display: flex;
	align-items: center;
	height: 100%;
	animation: scroll-left 30s linear infinite;
	gap: 25px;
	white-space: nowrap;
	padding: 0 20px;
}

.scroller-item {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: linear-gradient(135deg, rgba(15, 20, 27, 0.8), rgba(20, 26, 35, 0.6));
	border: 1px solid rgba(59, 130, 246, 0.2);
	border-radius: 20px;
	color: #e2e8f0;
	font-size: 13px;
	font-weight: 600;
	white-space: nowrap;
	backdrop-filter: blur(10px);
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	flex-shrink: 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	position: relative;
	overflow: hidden;
}

.scroller-item::before {
	content: "";
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
	transition: left 0.6s ease;
}

.scroller-item:hover {
	background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.1));
	border-color: rgba(59, 130, 246, 0.5);
	color: #60a5fa;
	transform: translateY(-2px) scale(1.05);
	box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.scroller-item:hover::before {
	left: 100%;
}

@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}

@keyframes border-glow {
	0%, 100% {
		opacity: 0.8;
	}
	50% {
		opacity: 1;
	}
}

@keyframes gradient-rotate {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

@keyframes shimmer-line {
	0% {
		opacity: 0;
		transform: translateX(-100%);
	}
	50% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateX(100%);
	}
}

@keyframes glow-pulse {
	0%, 100% {
		opacity: 0.3;
		transform: scale(1);
	}
	50% {
		opacity: 0.6;
		transform: scale(1.05);
	}
}

@keyframes floatY {
	0% { transform:translateY(0) }
	50% { transform:translateY(-8px) }
	100% { transform:translateY(0) }
}
.card{ background:var(--card); border:1px solid #1e2630; border-radius:12px; padding:16px; margin:16px 0; }
.grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:12px; }
label span{ display:block; font-size:13px; color:var(--muted); margin-bottom:6px; }
input{ width:100%; padding:10px 12px; border-radius:8px; border:1px solid #263242; background:#0e131a; color:var(--text); }
.services-list{ display:grid; grid-template-columns:repeat(1,1fr); gap:10px; }
.service-item{ display:flex; align-items:center; gap:10px; padding:10px; border:1px solid #263242; border-radius:10px; }
.service-item .grow{ flex:1; }
.service-item h4{ margin:0; font-size:15px; }
.service-item p{ margin:2px 0 0; color:var(--muted); font-size:12px; }
.qty{ width:90px; }
.summary{ display:flex; justify-content:space-between; align-items:center; padding:10px; border-top:1px dashed #263242; margin-top:10px; }
.actions{ text-align:right; }
.lang-switcher a{ color:var(--muted); text-decoration:none; margin-right:8px; }
/* Footer */
.site-footer {
	background: linear-gradient(135deg, #0a0e13 0%, #0f1419 50%, #0a0e13 100%);
	border-top: 1px solid #1e2630;
	margin-top: 0;
	padding: 40px 0 20px;
	position: relative;
	overflow: hidden;
}

.site-footer::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(60% 60% at 20% 10%, rgba(237,28,53,.08), transparent 60%), 
	            radial-gradient(60% 60% at 80% 90%, rgba(246,136,31,.06), transparent 60%);
	pointer-events: none;
}

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

.footer-top {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 60px;
	margin-bottom: 40px;
	align-items: center;
}

.footer-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	height: 100%;
}

/* Logo Section */
.logo-section {
	gap: 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	justify-content: center;
	height: 100%;
}

.footer-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 16px;
}

.footer-logo .logo-img {
	height: 40px;
	width: auto;
	filter: invert(1) brightness(1.6) contrast(1.1);
}

.footer-description {
	color: #94a3b8;
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
	max-width: 280px;
}

.footer-social {
	display: flex;
	gap: 12px;
	justify-content: center;
}

.social-link {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: all 0.3s ease;
}

.social-link i {
	font-size: 14px;
}

.social-link.instagram {
	background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
	color: #fff;
}

.social-link.facebook {
	background: #1877F2;
	color: #fff;
}

.social-link.linkedin {
	background: #0A66C2;
	color: #fff;
}

.social-link.twitter {
	background: #1DA1F2;
	color: #fff;
}

.social-link.whatsapp {
	background: #25D366;
	color: #fff;
}

.social-link:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

/* Pages Section */
.pages-section {
	justify-content: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 100%;
}

.page-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 10px;
	width: 100%;
	max-width: 300px;
}

.page-box {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 12px;
	background: rgba(15, 20, 27, 0.6);
	border: 1px solid #1e2630;
	border-radius: 6px;
	color: #94a3b8;
	text-decoration: none;
	font-size: 12px;
	font-weight: 500;
	text-align: center;
	transition: all 0.3s ease;
	backdrop-filter: blur(10px);
}

.page-box:hover {
	background: rgba(18, 24, 33, 0.8);
	border-color: rgba(237, 28, 53, 0.4);
	color: #ff6b6b;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(237, 28, 53, 0.2);
}

/* Contact Section */
.contact-section {
	justify-content: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	height: 100%;
}

.contact-header {
	font-size: 18px;
	font-weight: 600;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin: 0 0 20px 0;
	text-align: center;
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 12px;
	align-items: center;
	width: 100%;
}

.contact-info .contact-item {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	color: #94a3b8;
	font-size: 14px;
	font-weight: 400;
	padding: 12px 20px;
	background: rgba(15, 20, 27, 0.4);
	border: 1px solid #1e2630;
	border-radius: 8px;
	transition: all 0.3s ease;
	width: 100%;
	max-width: 250px;
	text-align: center;
}

.contact-info .contact-item:hover {
	background: rgba(18, 24, 33, 0.6);
	border-color: rgba(237, 28, 53, 0.3);
	color: #e2e8f0;
}

.contact-info .contact-item i {
	width: 16px;
	text-align: center;
	color: #ff6b6b;
	font-size: 14px;
}

.footer-bottom {
	border-top: 1px solid #1e2630;
	padding: 24px 0;
}

.footer-bottom-content {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.copyright {
	color: #94a3b8;
	font-size: 14px;
	margin: 0;
}

.footer-bottom-links {
	display: flex;
	gap: 24px;
}

.footer-bottom-links a {
	color: #94a3b8;
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
	color: #60a5fa;
}

/* Mobile Responsive for Footer */
@media (max-width: 1024px) {
	.footer-top {
		grid-template-columns: 1fr;
		gap: 40px;
		text-align: center;
	}
	
	.footer-links {
		flex-direction: column;
		gap: 30px;
	}
}

@media (max-width: 768px) {
	.site-footer {
		padding: 40px 0 0;
	}
	
	.footer-top {
		gap: 30px;
		margin-bottom: 30px;
	}
	
	.footer-links {
		flex-direction: column;
		gap: 24px;
		text-align: center;
	}
	
	.page-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 1fr);
		gap: 10px;
	}
	
	.footer-bottom-content {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}
	
	.footer-bottom-links {
		justify-content: center;
	}
}

@media (max-width: 480px) {
	.site-footer {
		padding: 30px 0 0;
	}
	
	.footer-social {
		justify-content: center;
	}
	
	.footer-description {
		text-align: center;
		max-width: 100%;
	}
	
	.footer-bottom-links {
		flex-direction: column;
		gap: 12px;
	}
	
	.page-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(3, 1fr);
		gap: 8px;
		max-width: 250px;
	}
	
	.page-box {
		padding: 8px 10px;
		font-size: 11px;
	}
	
	.contact-info .contact-item {
		padding: 6px 12px;
		font-size: 13px;
	}
	
	/* Contact Section Small Mobile */
	.contact-section {
		padding: 80px 0 20px 0;
	}
	
	.contact-header-section {
		margin-bottom: 20px;
	}
	
	.contact-header-section h2 {
		font-size: 22px;
		margin-bottom: 8px;
	}
	
	.contact-header-section p {
		font-size: 12px;
		line-height: 1.3;
	}
	
	.contact-wrapper {
		gap: 20px;
	}
	
	.contact-methods {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 8px;
	}
	
	.social-media {
		display: grid !important;
		grid-template-columns: 1fr 1fr !important;
		gap: 8px !important;
	}
	
	.social-btn span {
		display: none !important;
	}
	
	.social-btn {
		justify-content: center !important;
		padding: 8px !important;
		min-height: 36px;
	}
	
	.contact-item {
		padding: 8px !important;
		flex-direction: row !important;
		text-align: left !important;
		gap: 6px !important;
		align-items: center !important;
		background: rgba(15, 20, 27, 0.7) !important;
		border: 1px solid rgba(59, 130, 246, 0.2) !important;
		border-radius: 8px !important;
		backdrop-filter: blur(8px) !important;
		box-shadow: none !important;
		transform: none !important;
		min-height: 44px;
	}
	
	.contact-icon {
		width: 28px;
		height: 28px;
		font-size: 12px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 5px;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-shrink: 0;
	}
	
	.contact-details {
		flex: 1;
	}
	
	.contact-details h4 {
		font-size: 9px;
		margin-bottom: 1px;
		font-weight: 600;
		color: #ffffff;
		line-height: 1.1;
	}
	
	.contact-details p {
		font-size: 8px;
		margin-bottom: 0;
		color: #e5e7eb;
		line-height: 1.1;
	}
	
	.contact-note {
		display: none;
	}
	
	.contact-action {
		display: flex !important;
		width: 32px;
		height: 32px;
		font-size: 14px;
	}
	
	.quick-actions {
		gap: 8px;
		margin-bottom: 16px;
	}
	
	.quick-actions h3 {
		font-size: 14px;
		margin-bottom: 10px;
	}
	
	.social-connect h3 {
		font-size: 14px;
		margin-bottom: 10px;
	}
}

/* Sections */
.section{ padding:50px 0; }
.section.about-vision{ padding-top:20px; }
.section.alt{ position:relative; background:radial-gradient(60% 60% at 20% 10%, rgba(237,28,53,.08), transparent 60%), radial-gradient(60% 60% at 80% 90%, rgba(246,136,31,.06), transparent 60%); border-top:1px solid #1e2630; border-bottom:1px solid #1e2630; }
.marquee-section{ padding:12px 0 0; margin-top:-40px; position:relative; }
.marquee{ display:grid; gap:2px; overflow:hidden; position:relative; }
.marquee::before,
.marquee::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 30px;
	z-index: 2;
	pointer-events: none;
}

.marquee::before {
	left: 0;
	background: linear-gradient(to right, rgba(12, 15, 20, 1), rgba(12, 15, 20, 0));
}

.marquee::after {
	right: 0;
	background: linear-gradient(to left, rgba(12, 15, 20, 1), rgba(12, 15, 20, 0));
}
.marquee-row{ position:relative; display:flex; gap:24px; white-space:nowrap; }
.marquee-row .track{ display:inline-flex; gap:24px; padding:10px 0; animation:marquee-left var(--speed, 35s) linear infinite; }
.marquee-row.marquee-b .track{ animation-name:marquee-right; }
.marquee-row span{ display:inline-block; padding:8px 14px; border-radius:999px; background:#0f141b; border:1px solid #1e2630; color:#cfe5ff; font-weight:700; }
.marquee-row.marquee-a span{ background:rgba(15,20,27,.9); border-color:rgba(59,130,246,.4); color:#e7edf5; }
.marquee-row.marquee-b span{ background:rgba(15,20,27,.9); border-color:rgba(139,92,246,.4); color:#e7edf5; }
@keyframes marquee-left{ from{ transform:translateX(0) } to{ transform:translateX(-100%) } }
@keyframes marquee-right{ from{ transform:translateX(-100%) } to{ transform:translateX(0) } }
.section-head{ text-align:center; margin-bottom:24px; }
.muted{ color:var(--muted); }
.features{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:14px; }
.feature{ background:var(--card); border:1px solid #1e2630; border-radius:12px; padding:16px; }
.checks{ list-style:none; padding:0; margin:16px 0; }
.checks li{ margin:8px 0; }

/* Clients scroller */
.clients .logo-scroller{ position:relative; overflow:hidden; border:1px solid #1e2630; border-radius:12px; background:#0e131a; }
.clients .logos{ display:flex; gap:24px; padding:18px 24px; min-width:100%; animation:scroll var(--speed, 30s) linear infinite; }
.clients .logo{ padding:10px 16px; border-radius:10px; background:#121821; border:1px solid #1e2630; color:#cfe5ff; font-weight:700; }
@keyframes scroll{ from{ transform:translateX(0) } to{ transform:translateX(-100%) } }

/* Vision */
.vision{ display:none; }
.about-vision{ position:relative; background:linear-gradient(180deg, rgba(8,12,18,0), rgba(8,12,18,.4)); }
.av-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:14px; }
.av-card{ background:var(--card); border:1px solid #1e2630; border-radius:14px; padding:18px; box-shadow:0 10px 40px rgba(0,0,0,.25); }
.av-card h2{ margin:6px 0 10px; letter-spacing:-.02em; font-size:24px; font-weight:600; font-family:'Space Grotesk',sans-serif; background:linear-gradient(135deg, #ED1C35, #F6881F); -webkit-background-clip:text; background-clip:text; color:transparent; }
.av-card h3{ margin:6px 0 10px; letter-spacing:-.02em; font-weight:500; font-family:'Space Grotesk',sans-serif; }
.av-card p{ text-align:justify; line-height:1.6; margin:0; font-weight:400; font-family:'Space Grotesk',sans-serif; }

.av-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-top:14px; }
.chip{ display:inline-block; padding:8px 12px; border-radius:999px; background:rgba(237,28,53,.12); border:1px solid rgba(246,136,31,.3); color:#ff8a8a; font-weight:500; font-family:'Space Grotesk',sans-serif; }

/* Clients Section */
.clients-section {
	padding: 40px 0;
	background: linear-gradient(135deg, #0f1419 0%, #151a21 50%, #0f1419 100%);
	border-top: 1px solid #1e2630;
	border-bottom: 1px solid #1e2630;
	position: relative;
	overflow: hidden;
}

.clients-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: radial-gradient(60% 60% at 20% 10%, rgba(59,130,246,.06), transparent 60%), 
	            radial-gradient(60% 60% at 80% 90%, rgba(96,165,250,.04), transparent 60%);
	pointer-events: none;
}

.clients-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.2fr;
	gap: 80px;
	align-items: center;
	width: min(1100px, 92%);
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

.clients-left {
	display: flex;
	align-items: center;
}

.clients-text {
	text-align: left;
}

.clients-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	background: linear-gradient(135deg,#ED1C35,#F6881F);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 20px;
}

.clients-title {
	font-size: 64px;
	font-weight: 900;
	line-height: 0.9;
	margin: 0 0 24px 0;
	letter-spacing: -0.03em;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-transform: uppercase;
	position: relative;
}

.clients-title::after {
	content: "";
	position: absolute;
	bottom: -8px;
	left: 0;
	width: 60px;
	height: 4px;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	border-radius: 2px;
}

.clients-description {
	font-size: 18px;
	color: #94a3b8;
	margin: 0;
	line-height: 1.6;
	max-width: 400px;
}

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

.clients-logos {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	width: 100%;
	max-width: 800px;
}

.logo-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
	background: rgba(15, 20, 27, 0.6);
	border: 1px solid #1e2630;
	border-radius: 16px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	backdrop-filter: blur(10px);
	position: relative;
	overflow: hidden;
	aspect-ratio: 1;
	min-height: 120px;
}

.logo-item img {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100px;
	height: 100px;
	min-width: 80px;
	min-height: 80px;
	object-fit: contain;
}

.logo-item::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(139,92,246,0.1));
	opacity: 0;
	transition: opacity 0.3s ease;
}

.logo-item:hover {
	border-color: rgba(237, 28, 53, 0.6);
	background: rgba(18, 24, 33, 0.8);
}

/* Rotating Logo Styles */
.logo-item {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo-item img {
	width: 100px;
	height: 100px;
	min-width: 80px;
	min-height: 80px;
	object-fit: contain;
}

/* Logo opacity is now controlled by JavaScript */

/* Logo animations are now handled by JavaScript */

.logo-item:hover::before {
	opacity: 1;
}

.logo-item img {
	filter: grayscale(1) brightness(0.8);
	transition: all 0.3s ease;
	z-index: 2;
}

.logo-item:hover img {
	filter: grayscale(0) brightness(1);
}

.logo-item:hover::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(237, 28, 53, 0.8), rgba(246, 136, 31, 0.8));
	mix-blend-mode: multiply;
	pointer-events: none;
	z-index: 3;
}

/* Mobile Responsive for Clients */
@media (max-width: 1024px) {
	.clients-wrapper {
		grid-template-columns: 1fr;
		gap: 60px;
		text-align: center;
	}
	
	.clients-title {
		font-size: 56px;
	}
	
	.clients-logos {
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}
}

@media (max-width: 768px) {
	.clients-section {
		padding: 25px 0;
		margin-top: -20px;
	}
	
	.clients-wrapper {
		gap: 30px;
		padding: 0;
	}
	
	.clients-left {
		order: 1;
	}
	
	.clients-right {
		order: 2;
	}
	
	.clients-label {
		font-size: 14px;
		margin-bottom: 8px;
	}
	
	.clients-title {
		font-size: 42px;
		margin-bottom: 16px;
		line-height: 1.1;
	}
	
	.clients-description {
		font-size: 15px;
		max-width: 100%;
		line-height: 1.5;
		margin-bottom: 0;
	}
	
	.clients-logos {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
		margin-top: 20px;
	}
	
	.logo-item {
		padding: 14px;
		background: rgba(255, 255, 255, 0.02);
		border: 1px solid rgba(255, 255, 255, 0.05);
		border-radius: 12px;
		transition: all 0.3s ease;
	}
	
	.logo-item:hover {
		background: rgba(255, 255, 255, 0.04);
		border-color: rgba(237, 28, 53, 0.6);
	}
	
	.logo-item img {
		max-height: 30px;
		filter: brightness(0.8) contrast(1.1);
	}
}

@media (max-width: 480px) {
	.clients-section {
		padding: 15px 0;
		margin-top: -15px;
	}
	
	.clients-wrapper {
		gap: 24px;
		padding: 0;
	}
	
	.clients-label {
		font-size: 13px;
		margin-bottom: 6px;
	}
	
	.clients-title {
		font-size: 32px;
		margin-bottom: 12px;
		line-height: 1.1;
	}
	
	.clients-description {
		font-size: 14px;
		line-height: 1.4;
	}
	
	.clients-logos {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
		margin-top: 16px;
	}
	
	.logo-item {
		padding: 12px;
		background: rgba(255, 255, 255, 0.02);
		border: 1px solid rgba(255, 255, 255, 0.05);
		border-radius: 10px;
		transition: all 0.3s ease;
	}
	
	.logo-item:hover {
		background: rgba(255, 255, 255, 0.04);
		border-color: rgba(237, 28, 53, 0.6);
	}
	
	.logo-item img {
		max-height: 26px;
		filter: brightness(0.8) contrast(1.1);
	}
	
	/* Portfolio Section Mobile */
	.portfolio-modern {
		padding: 30px 0;
	}
	
	.port-title.xl {
		font-size: 28px;
		margin-bottom: 20px;
	}
	
	.featured-grid {
		width: 95%;
		margin: 20px auto 30px;
		grid-template-columns: 1fr;
		grid-auto-rows: 200px;
		gap: 16px;
	}
	
	.featured-grid .shot {
		border-radius: 16px;
	}
	
	.portfolio-modern .center {
		margin-bottom: 0;
	}
	
	.portfolio-modern .center .btn {
		padding: 16px 32px;
		font-size: 16px;
		font-weight: 600;
		border-radius: 12px;
		background: linear-gradient(135deg, #ED1C35, #F6881F);
		border: none;
		color: white;
		text-decoration: none;
		display: block;
		width: 80%;
		margin: 0 auto;
		transition: all 0.3s ease;
		text-align: center;
	}
	
	.portfolio-modern .center .btn:hover {
		transform: translateY(-2px);
		box-shadow: none !important;
	}
	
	/* Portfolio Section Small Mobile */
	.portfolio-modern {
		padding: 25px 0;
	}
	
	.port-title.xl {
		font-size: 24px;
		margin-bottom: 16px;
	}
	
	.featured-grid {
		width: 97%;
		margin: 16px auto 25px;
		grid-auto-rows: 180px;
		gap: 12px;
	}
	
	.portfolio-modern .center .btn {
		padding: 14px 28px;
		font-size: 15px;
		width: 85%;
	}
}

/* Team */
.section.tight{ padding-top:30px; }
.team-grid{ display:none; }
.team-row{ display:none; }
.team-marquee{ position:relative; overflow:hidden; }

.team-marquee::before,
.team-marquee::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: 30px;
	z-index: 2;
	pointer-events: none;
}

.team-marquee::before {
	left: 0;
	background: linear-gradient(to right, rgba(12, 15, 20, 1), rgba(12, 15, 20, 0));
}

.team-marquee::after {
	right: 0;
	background: linear-gradient(to left, rgba(12, 15, 20, 1), rgba(12, 15, 20, 0));
}
.team-marquee .track{ display:flex; gap:12px; width:max-content; animation:team-scroll 30s linear infinite; }
.team-marquee:hover .track{ animation-play-state:paused; }
.team-marquee .member{ width:240px; background:var(--card); border:1px solid #1e2630; border-radius:14px; padding:12px; flex:0 0 auto; }
.team-row .member .meta{ display:flex; flex-direction:column; gap:2px; text-align:left; }
.team-row .member .meta strong{ font-size:14px; }
.team-row .member .meta span{ font-size:12px; color:var(--muted); }
@keyframes team-scroll{ from{ transform:translateX(0) } to{ transform:translateX(-50%) } }
.avatar-img{ width:100%; aspect-ratio:4/5; border-radius:12px; overflow:hidden; background:#0f141b; border:1px solid #243040; margin:0 auto 8px; }
.team-row::-webkit-scrollbar{ height:8px; }
.team-row::-webkit-scrollbar-thumb{ background:#1e2633; border-radius:10px; }
.team-row .member{ flex:0 0 220px; scroll-snap-align:start; }
.member{ 
	background-size: cover !important;
	background-position: center !important;
	background-repeat: no-repeat !important;
	border:1px solid #1e2630; 
	border-radius:12px; 
	padding:0; 
	text-align:center; 
	transition:.25s ease; 
	position: relative;
	overflow: hidden;
	aspect-ratio: 4/5;
	min-height: 300px;
}
.member:hover{ 
	border-color: rgba(59, 130, 246, 0.5);
	box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.3);
}
.avatar-img{ 
	display: none;
}
.avatar-img img{ 
	display: none;
}
.member .meta {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(transparent, rgba(0,0,0,0.3));
	backdrop-filter: blur(8px);
	padding: 12px 16px 12px;
	color: white;
}
.position-tag{ 
	position:absolute; 
	top:0; 
	left:0; 
	padding:4px 12px; 
	border-radius:0 0 12px 0; 
	background:linear-gradient(135deg, #ED1C35, #F6881F); 
	color:#ffffff; 
	font-weight:700; 
	font-size:13px; 
	letter-spacing:.04em; 
	text-transform:none; 
	border:1px solid rgba(237,28,53,.3); 
	border-left:none;
	border-top:none; 
	backdrop-filter:saturate(130%) blur(2px); 
	z-index:2; 
}


/* Contact Section */
.contact-section {
	padding: 40px 0 50px 0;
	background: transparent;
	position: relative;
	overflow: hidden;
}

.contact-section::before {
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	background: radial-gradient(60% 60% at 20% 10%, rgba(237,28,53,.18), rgba(246,136,31,.08) 40%, transparent 65%),
		radial-gradient(60% 60% at 80% 0%, rgba(246,136,31,.15), rgba(237,28,53,.06) 45%, transparent 70%);
	filter: saturate(1.2);
	pointer-events: none;
	z-index: -1;
}

.contact-section::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8,12,16,0) 0%, rgba(8,12,16,.25) 60%, rgba(8,12,16,0) 100%);
	pointer-events: none;
	z-index: -1;
}



.contact-header-section {
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	z-index: 2;
}

.get-in-touch-header {
	text-align: center;
	margin: 20px 0 30px 0;
	position: relative;
	z-index: 2;
}

.get-in-touch-header h2 {
	font-size: 80px;
	font-weight: 800;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	color: transparent;
	margin: 0;
	line-height: 1.1;
	letter-spacing: -0.03em;
	text-shadow: none;
	display: inline-block;
}

/* Mobile Responsive for Get in Touch Header */
@media (max-width: 768px) {
	.get-in-touch-header h2 {
		font-size: 60px;
	}
}

@media (max-width: 480px) {
	.get-in-touch-header h2 {
		font-size: 48px;
	}
}

.contact-label {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	background: linear-gradient(135deg,#3b82f6,#8b5cf6,#ef4444);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	margin-bottom: 16px;
}

.contact-header-section h2 {
	font-size: 42px;
	font-weight: 700;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin: 0 0 20px 0;
	line-height: 1.2;
	letter-spacing: -0.02em;
}

.contact-header-section p {
	font-size: 18px;
	color: #94a3b8;
	margin: 0;
	line-height: 1.6;
	max-width: 600px;
	margin: 0 auto;
}

.contact-wrapper {
	display: grid;
	grid-template-columns: 1fr 1.5fr;
	gap: 40px;
	align-items: stretch;
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	z-index: 2;
}

/* Left Side - Contact Methods */
.contact-left {
	display: flex;
	flex-direction: column;
}

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

.business-hours {
	background: rgba(15, 20, 27, 0.6);
	border: 1px solid #1e2630;
	border-radius: 20px;
	padding: 32px;
	margin-top: 20px;
	width: 100%;
}

.business-hours h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 20px;
	font-weight: 600;
	color: #ffffff;
	margin: 0 0 24px 0;
	text-align: center;
}

.hours-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(30, 38, 48, 0.5);
}

.hours-item:last-child {
	border-bottom: none;
}

.hours-item .day {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #94a3b8;
}

.hours-item .time {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #e2e8f0;
}

.business-hours-full {
	background: rgba(15, 20, 27, 0.6);
	border: 1px solid #1e2630;
	border-radius: 20px;
	padding: 32px;
	margin-top: 40px;
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.business-hours-full h3 {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 20px;
	font-weight: 600;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin: 0 0 24px 0;
	text-align: center;
}

.business-hours-full .hours-list {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.business-hours-full .hours-item {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 12px 0;
	border-bottom: 1px solid rgba(30, 38, 48, 0.5);
}

.business-hours-full .hours-item:last-child {
	border-bottom: none;
}

.business-hours-full .hours-item .day {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 14px;
	font-weight: 500;
	color: #94a3b8;
}

.business-hours-full .hours-item .time {
	font-family: 'Space Grotesk', sans-serif;
	font-size: 14px;
	font-weight: 400;
	color: #e2e8f0;
}

/* Map Section */
.map-section {
	margin-top: 40px;
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
}

.map-container {
	width: 100%;
	height: 400px;
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.map-container iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 24px;
}

/* Mobile Responsive for Map Section */
@media (max-width: 768px) {
	.map-section {
		margin-top: 30px;
	}
	
	.map-container {
		height: 300px;
	}
}

@media (max-width: 480px) {
	.map-section {
		margin-top: 20px;
	}
	
	.map-container {
		height: 250px;
	}
}

.contact-item {
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 24px;
	background: rgba(15, 20, 27, 0.8);
	border: 1px solid #1e2630;
	border-radius: 20px;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	backdrop-filter: blur(10px);
}

.contact-item.primary {
	border: 1px solid rgba(59, 130, 246, 0.3);
	background: rgba(15, 20, 27, 0.9);
	box-shadow: 0 8px 32px rgba(59, 130, 246, 0.1);
}

.contact-item:hover {
	transform: translateY(-4px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	background: rgba(18, 24, 33, 0.9);
	border-color: rgba(59, 130, 246, 0.4);
}

.contact-item.primary:hover {
	box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
}

.contact-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	position: relative;
	overflow: hidden;
}

.contact-icon::before {
	content: "";
	position: absolute;
	inset: 0;
	background: inherit;
	opacity: 0.1;
	border-radius: 16px;
}

.contact-icon i {
	font-size: 22px;
	position: relative;
	z-index: 2;
}

.contact-icon.whatsapp {
	background: linear-gradient(135deg, #25D366, #128C7E);
	color: #fff;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.contact-icon.email {
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	color: #fff;
	box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.contact-icon.phone {
	background: linear-gradient(135deg, #8b5cf6, #ef4444);
	color: #fff;
	box-shadow: 0 4px 16px rgba(139, 92, 246, 0.3);
}

.contact-details {
	flex: 1;
}

.contact-details h4 {
	font-size: 20px;
	font-weight: 600;
	color: #f8fafc;
	margin: 0 0 8px 0;
	letter-spacing: -0.01em;
}

.contact-details p {
	font-size: 16px;
	color: #e2e8f0;
	margin: 0 0 6px 0;
	font-weight: 500;
}

.contact-note {
	font-size: 13px;
	color: #94a3b8;
	font-style: italic;
}

.contact-action {
	width: 40px;
	height: 40px;
	border-radius: 12px;
	background: rgba(237, 28, 53, 0.1);
	border: 1px solid rgba(237, 28, 53, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #60a5fa;
	transition: all 0.3s ease;
	flex-shrink: 0;
}

.contact-action:hover {
	background: rgba(237, 28, 53, 0.2);
	border-color: rgba(237, 28, 53, 0.4);
	color: #ff6b6b;
	transform: scale(1.05);
}

/* Right Side - Quick Actions & Social */
.contact-right {
	display: flex;
	flex-direction: column;
	gap: 20px;
	height: 100%;
}

.quick-actions, .social-connect {
	background: rgba(15, 20, 27, 0.6);
	border: 1px solid #1e2630;
	border-radius: 20px;
	padding: 32px;
	backdrop-filter: blur(10px);
	flex: 1;
}

.quick-actions h3, .social-connect h3 {
	font-size: 22px;
	font-weight: 600;
	color: #f8fafc;
	margin: 0 0 24px 0;
	text-align: center;
}

.action-buttons {
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.btn-whatsapp, .btn-email {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	padding: 18px 24px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 16px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.btn-whatsapp {
	background: linear-gradient(135deg, #25D366, #128C7E);
	color: #fff;
	box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
	background: linear-gradient(135deg, #128C7E, #0d6b5f);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-email {
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	color: #fff;
	box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.btn-email:hover {
	background: linear-gradient(135deg, #1d4ed8, #7c3aed);
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(237, 28, 53, 0.4);
}

.social-media {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 16px;
}

.social-btn {
	display: flex;
	align-items: center;
	gap: 12px;
	padding: 16px 20px;
	border-radius: 14px;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	position: relative;
	overflow: hidden;
}

.social-btn i {
	font-size: 18px;
	width: 20px;
	text-align: center;
}

.social-btn span {
	font-size: 14px;
	font-weight: 500;
}

.social-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-btn.instagram {
	background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
	color: #fff;
}

.social-btn.facebook {
	background: #1877F2;
	color: #fff;
}

.social-btn.linkedin {
	background: #0A66C2;
	color: #fff;
}

.social-btn.twitter {
	background: #1DA1F2;
	color: #fff;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
	.contact-wrapper {
		grid-template-columns: 1fr;
		gap: 60px;
	}
	
	.contact-header-section h2 {
		font-size: 36px;
	}
}

@media (max-width: 768px) {
	.contact-section {
		padding: 40px 0 50px 0;
	}
	
	.contact-header-section {
		margin-bottom: 40px;
	}
	
	.contact-header-section h2 {
		font-size: 32px;
	}
	
	.contact-header-section p {
		font-size: 16px;
	}
	
	.contact-wrapper {
		gap: 40px;
		padding: 0 20px;
	}
	
	.contact-item {
		padding: 20px;
		gap: 16px;
	}
	
	.contact-icon {
		width: 48px;
		height: 48px;
	}
	
	.contact-icon i {
		font-size: 20px;
}

.contact-details h4 {
	font-size: 18px;
}

.contact-details p {
	font-size: 15px;
	}
	
	.quick-actions, .social-connect {
		padding: 24px;
	}
	
	.social-media {
		grid-template-columns: 1fr;
	}
	
	.btn-whatsapp, .btn-email {
		padding: 16px 20px;
		font-size: 15px;
	}
}

@media (max-width: 480px) {
	.contact-section {
		padding: 40px 0 40px 0;
	}
	
	.contact-header-section h2 {
		font-size: 28px;
	}
	
	.contact-item {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}
	
	.contact-action {
		align-self: center;
	}
}

/* Portfolio Page Styles */
.portfolio-hero {
	padding: 60px 0 20px 0 !important;
	text-align: center;
	position: relative;
	overflow: hidden;
	min-height: 80vh;
	display: flex;
	align-items: center;
	background: transparent;
}

.portfolio-hero::before {
	content: "";
	position: absolute;
	inset: -40px 0 auto 0;
	height: 460px;
	background: radial-gradient(60% 60% at 20% 10%, rgba(237,28,53,.18), rgba(246,136,31,.08) 40%, transparent 65%),
		radial-gradient(60% 60% at 80% 0%, rgba(246,136,31,.15), rgba(237,28,53,.06) 45%, transparent 70%);
	filter: saturate(1.2);
	pointer-events: none;
	z-index: -1;
}

.portfolio-hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(8,12,16,0) 0%, rgba(8,12,16,.25) 60%, rgba(8,12,16,0) 100%);
	pointer-events: none;
	z-index: -1;
}

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

.portfolio-trust-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background: rgba(15, 20, 27, 0.8);
	border: 1px solid #1e2630;
	border-radius: 25px;
	padding: 8px 16px;
	margin-bottom: 30px;
	font-size: 14px;
	color: #ffffff;
}

.portfolio-trust-avatars {
	display: flex;
	gap: -5px;
}

.portfolio-avatar {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	border: 2px solid #ffffff;
	margin-left: -8px;
	position: relative;
	overflow: hidden;
}

.portfolio-avatar:first-child {
	margin-left: 0;
}

.portfolio-hero-title {
	font-size: 64px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 0 20px 0;
	line-height: 1.1;
}

.portfolio-highlight {
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
}

.portfolio-hero-description {
	font-size: 20px;
	color: var(--muted);
	max-width: 600px;
	margin: 0 auto 80px auto;
	line-height: 1.6;
}

.portfolio-hero-actions {
	margin-top: 40px;
	margin-bottom: 60px;
}

.portfolio-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 16px 32px;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	color: #ffffff;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	transition: all 0.3s ease;
}

.portfolio-btn-primary:hover {
	transform: translateY(-2px);
	box-shadow: 0 10px 30px rgba(237, 28, 53, 0.4);
}

.portfolio-trusted-by {
	margin-top: 40px;
}

.portfolio-trusted-text {
	font-size: 16px;
	color: var(--muted);
	margin: 0 0 20px 0;
}

.portfolio-highlight-number {
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	font-weight: 700;
}

.portfolio-client-slider {
	width: 80%;
	max-width: 800px;
	overflow: hidden;
	margin: 20px auto 0 auto;
	position: relative;
}

.portfolio-client-slider::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 100%;
	background: linear-gradient(to right, rgba(8, 12, 16, 1), rgba(8, 12, 16, 0));
	z-index: 2;
	pointer-events: none;
}

.portfolio-client-slider::after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 100%;
	background: linear-gradient(to left, rgba(8, 12, 16, 1), rgba(8, 12, 16, 0));
	z-index: 2;
	pointer-events: none;
}

.portfolio-slider-track {
	display: flex;
	animation: portfolio-slide 24s linear infinite;
	gap: 40px;
	align-items: center;
}

.portfolio-logo-item {
	height: 60px;
	width: auto;
	filter: brightness(0) invert(1);
	opacity: 0.8;
	flex-shrink: 0;
	transition: opacity 0.3s ease;
}

.portfolio-logo-item:hover {
	opacity: 1;
}

@keyframes portfolio-slide {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-50%);
	}
}


/* Portfolio Projects Section */
.portfolio-projects {
	padding: 80px 0;
	background: transparent;
	position: relative;
	overflow: hidden;
}

.portfolio-projects::before {
	content: "";
	position: absolute;
	inset: -40px 0 auto 0;
	height: 460px;
	background: radial-gradient(60% 60% at 20% 10%, rgba(237,28,53,.12), rgba(246,136,31,.06) 40%, transparent 65%),
		radial-gradient(60% 60% at 80% 0%, rgba(246,136,31,.1), rgba(237,28,53,.04) 45%, transparent 70%);
	filter: saturate(1.2);
	pointer-events: none;
	z-index: -1;
}

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

.project-card {
	background: rgba(15, 20, 27, 0.6);
	border: 1px solid #1e2630;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.project-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: rgba(237, 28, 53, 0.3);
}

.project-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
	transform: scale(1.1);
}

.project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(237, 28, 53, 0.9), rgba(246, 136, 31, 0.8));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
	opacity: 1;
}

.project-info {
	text-align: center;
	color: #fff;
	padding: 20px;
}

.project-info h3 {
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.project-info p {
	font-size: 16px;
	margin: 0 0 20px 0;
	opacity: 0.9;
}

.project-tags {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}

.project-tags .tag {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 500;
}

/* Project Card Elements */
.project-logo {
	position: absolute;
	top: 20px;
	left: 20px;
	width: 40px;
	height: 40px;
	background: rgba(255, 255, 255, 0.9);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
}

.project-logo img {
	width: 24px;
	height: 24px;
	filter: none;
}

.project-title {
	position: absolute;
	bottom: 20px;
	left: 20px;
	right: 20px;
	z-index: 2;
}

.project-title h3 {
	font-size: 18px;
	font-weight: 600;
	color: #ffffff;
	margin: 0;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.project-view-btn {
	position: absolute;
	bottom: 20px;
	right: 20px;
	z-index: 2;
}

.view-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	color: #ffffff;
	border-radius: 20px;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(237, 28, 53, 0.3);
}

.view-btn:hover {
	transform: translateY(-2px);
	box-shadow: 0 6px 20px rgba(237, 28, 53, 0.4);
	color: #ffffff;
}

.view-btn i {
	font-size: 12px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.projects-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

/* Portfolio Categories */
.portfolio-categories {
	padding: 40px 0;
	background: rgba(15, 20, 27, 0.6);
	border-top: 1px solid #1e2630;
	border-bottom: 1px solid #1e2630;
}

.categories-filter {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.filter-btn {
	padding: 12px 24px;
	border: 1px solid rgba(237, 28, 53, 0.3);
	background: rgba(237, 28, 53, 0.1);
	color: #ff6b6b;
	border-radius: 25px;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	color: #fff;
	border-color: transparent;
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(237, 28, 53, 0.4);
}

/* Featured Projects */
.featured-projects {
	padding: 80px 0;
	background: transparent;
	position: relative;
	overflow: hidden;
}

.featured-projects::before {
	content: "";
	position: absolute;
	inset: -40px 0 auto 0;
	height: 460px;
	background: radial-gradient(60% 60% at 20% 10%, rgba(237,28,53,.12), rgba(246,136,31,.06) 40%, transparent 65%),
		radial-gradient(60% 60% at 80% 0%, rgba(246,136,31,.1), rgba(237,28,53,.04) 45%, transparent 70%);
	filter: saturate(1.2);
	pointer-events: none;
	z-index: -1;
}

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

.section-title {
	font-size: 42px;
	font-weight: 700;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin: 0 0 20px 0;
	line-height: 1.2;
}

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

.project-card {
	background: rgba(15, 20, 27, 0.6);
	border: 1px solid #1e2630;
	border-radius: 20px;
	overflow: hidden;
	transition: all 0.3s ease;
	cursor: pointer;
}

.project-card:hover {
	transform: translateY(-10px);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
	border-color: rgba(237, 28, 53, 0.3);
}

.project-image {
	position: relative;
	height: 250px;
	overflow: hidden;
}

.project-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}

.project-card:hover .project-image img {
	transform: scale(1.1);
}

.project-overlay {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(135deg, rgba(237, 28, 53, 0.9), rgba(246, 136, 31, 0.8));
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
	opacity: 1;
}

.project-info {
	text-align: center;
	color: #fff;
	padding: 20px;
}

.project-info h3 {
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 10px 0;
}

.project-info p {
	font-size: 16px;
	margin: 0 0 20px 0;
	opacity: 0.9;
}

.project-tags {
	display: flex;
	gap: 8px;
	justify-content: center;
	flex-wrap: wrap;
}

.project-tags .tag {
	background: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.3);
	color: #fff;
	padding: 4px 12px;
	border-radius: 15px;
	font-size: 12px;
	font-weight: 500;
}

/* Project Showcase */
.project-showcase {
	padding: 80px 0;
	background: rgba(15, 20, 27, 0.3);
	border-top: 1px solid #1e2630;
	border-bottom: 1px solid #1e2630;
}

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

.showcase-header .section-title {
	font-size: 48px;
	margin-bottom: 20px;
}

.showcase-header p {
	font-size: 18px;
	color: var(--muted);
	max-width: 600px;
	margin: 0 auto;
	line-height: 1.6;
}

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

.showcase-image {
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.showcase-image img {
	width: 100%;
	height: 400px;
	object-fit: cover;
}

.showcase-details {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.detail-item h4 {
	font-size: 20px;
	font-weight: 600;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin: 0 0 10px 0;
}

.detail-item p {
	font-size: 16px;
	color: var(--muted);
	line-height: 1.6;
	margin: 0;
}

/* Portfolio Stats */
.portfolio-stats {
	padding: 80px 0;
	background: transparent;
	position: relative;
	overflow: hidden;
}

.portfolio-stats::before {
	content: "";
	position: absolute;
	inset: -40px 0 auto 0;
	height: 460px;
	background: radial-gradient(60% 60% at 20% 10%, rgba(237,28,53,.08), rgba(246,136,31,.04) 40%, transparent 65%),
		radial-gradient(60% 60% at 80% 0%, rgba(246,136,31,.06), rgba(237,28,53,.03) 45%, transparent 70%);
	filter: saturate(1.2);
	pointer-events: none;
	z-index: -1;
}

.stats-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 40px;
	text-align: center;
}

.stat-item {
	padding: 30px 20px;
}

.stat-number {
	font-size: 48px;
	font-weight: 700;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin: 0 0 10px 0;
	line-height: 1;
}

.stat-label {
	font-size: 16px;
	color: var(--muted);
	font-weight: 500;
}

/* Portfolio CTA */
.portfolio-cta {
	padding: 80px 0;
	background: rgba(15, 20, 27, 0.6);
	border-top: 1px solid #1e2630;
}

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

.cta-content h2 {
	font-size: 42px;
	font-weight: 700;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	background-clip: text;
	color: transparent;
	margin: 0 0 20px 0;
	line-height: 1.2;
}

.cta-content p {
	font-size: 18px;
	color: var(--muted);
	margin: 0 0 40px 0;
	line-height: 1.6;
}

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

/* Animations */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(30px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.portfolio-hero h1 {
		font-size: 48px;
	}
	
	.portfolio-hero p {
		font-size: 18px;
	}
	
	.categories-filter {
		gap: 15px;
	}
	
	.filter-btn {
		padding: 10px 20px;
		font-size: 13px;
	}
	
	.projects-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	
	.section-title {
		font-size: 36px;
	}
	
	.showcase-content {
		grid-template-columns: 1fr;
		gap: 40px;
	}
	
	.showcase-header .section-title {
		font-size: 36px;
	}
	
	.stats-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 30px;
	}
	
	.stat-number {
		font-size: 36px;
	}
	
	.cta-content h2 {
		font-size: 36px;
	}
	
	.cta-buttons {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.portfolio-hero {
		padding: 60px 0 20px 0 !important;
	}
	
	.portfolio-hero h1 {
		font-size: 36px;
	}
	
	.categories-filter {
		flex-direction: column;
		align-items: center;
	}
	
	.stats-grid {
		grid-template-columns: 1fr;
	}
	
	.cta-content h2 {
		font-size: 28px;
	}
}

/* Clients Wall */
.clients-wall .wall-grid{ display:grid; grid-template-columns:1fr 1.2fr; gap:20px; align-items:center; }
.clients-wall .wall-left h2{ margin:0 0 12px; }
.big-title{ line-height:1; }
.big-title .line{ display:block; font-weight:900; letter-spacing:-.03em; }
.big-title .line.top{ font-size:56px; background:linear-gradient(90deg, #ED1C35, #F6881F, #ED1C35); background-size:200% 100%; -webkit-background-clip:text; background-clip:text; color:transparent; animation:shine 8s linear infinite; }
.big-title .line.bottom{ font-size:46px; background:linear-gradient(90deg, #ffb366, #F6881F, #ff8c66, #ffb366); background-size:200% 100%; -webkit-background-clip:text; background-clip:text; color:transparent; animation:shine 10s linear infinite reverse; }
@keyframes shine { 0%{ background-position:0% 50% } 100%{ background-position:200% 50% } }
.clients-wall .icons-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(120px,1fr)); gap:14px; }
.clients-wall .icon{ display:grid; place-items:center; padding:18px; border-radius:16px; background:#0f141b; border:1px solid #1e2630; animation:pop 8s ease-in-out infinite; }
.clients-wall .icon:nth-child(3n){ animation-delay:.3s }
.clients-wall .icon:nth-child(3n+1){ animation-delay:.6s }
.clients-wall .icon:nth-child(3n+2){ animation-delay:.9s }
.clients-wall .icon:hover{ transform:translateY(-4px) scale(1.02); transition:.25s ease; }
.clients-wall .icon img{ max-width:100%; max-height:40px; filter:grayscale(1) brightness(.9); opacity:.9; }
.clients-wall .icon:hover img{ filter:none; opacity:1; }

@keyframes pop { 0%,100%{ transform:translateY(0) } 50%{ transform:translateY(-6px) } }

/* Portfolio */
.portfolio .section-head{ text-align:center; }
.portfolio-split{ display:none; }
.portfolio-modern{ position:relative; padding:40px 0; border-top:1px solid #1e2630; border-bottom:1px solid #1e2630; background:radial-gradient(60% 60% at 20% 10%, rgba(237,28,53,.12), transparent 60%), radial-gradient(60% 60% at 80% 90%, rgba(246,136,31,.1), transparent 60%); }
.portfolio-modern .center{ text-align:center; }
.eyebrow{ display:inline-block; font-size:12px; letter-spacing:.12em; text-transform:uppercase; padding:6px 10px; border-radius:999px; background:linear-gradient(135deg, rgba(237,28,53,0.1), rgba(246,136,31,0.1)); border:1px solid rgba(237,28,53,0.3); color:#ff6b6b; margin-bottom:8px; width:auto; max-width:100%; box-sizing:border-box; font-family:'Space Grotesk',sans-serif; font-weight:500; }
.port-title{ font-size:28px; margin:0 0 6px; letter-spacing:-.02em; background:linear-gradient(90deg,#ED1C35,#F6881F,#ED1C35); background-size:200% 100%; -webkit-background-clip:text; background-clip:text; color:transparent; animation:shine 12s linear infinite; }
.port-title.xl{ font-size:32px; }
.featured-grid{ width:min(1100px,92%); margin:16px auto 8px; display:grid; grid-template-columns:2fr 1.2fr; grid-auto-rows:160px; gap:10px; align-items:stretch; }
.featured-grid .shot{ position:relative; display:block; overflow:hidden; border-radius:12px; border:1px solid #1e2630; background:#0f141b; transition:all 0.3s ease; }
.featured-grid .shot img{ width:100%; height:100%; object-fit:cover; display:block; filter:saturate(1.05) contrast(1.05); transition:transform 0.3s ease; }
.featured-grid .lg{ grid-row:span 2; }
.featured-grid .md{ }
.featured-grid .sm{ }
.featured-grid .shot:hover{ transform:translateY(-3px); box-shadow:0 12px 30px rgba(0,0,0,.25); border-color:rgba(59,130,246,.4); }
.featured-grid .shot:hover img{ transform:scale(1.02); }

/* Portfolio Button Desktop */
.portfolio-modern .center .btn {
	padding: 16px 32px;
	font-size: 16px;
	font-weight: 600;
	border-radius: 12px;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	border: none;
	color: white;
	text-decoration: none;
	display: inline-block;
	transition: all 0.3s ease;
	margin-top: 20px;
}

.portfolio-modern .center .btn:hover {
	transform: translateY(-2px);
	box-shadow: none !important;
}
.glass{ position:relative; padding:24px 28px; border-radius:16px; background:rgba(10,14,20,.6); border:1px solid rgba(148,163,184,.25); box-shadow:0 10px 40px rgba(0,0,0,.35); backdrop-filter:blur(10px) saturate(130%); text-align:center; }
.glass::before{ content:""; position:absolute; inset:-1px; padding:1px; border-radius:18px; background:linear-gradient(135deg, rgba(237,28,53,.6), rgba(246,136,31,.3), rgba(255,255,255,.05)); -webkit-mask:linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite:xor; mask-composite:exclude; pointer-events:none; }
.glass h2{ margin:0 0 10px; font-size:36px; letter-spacing:-.02em; background:linear-gradient(90deg, #ED1C35, #F6881F, #ED1C35); background-size:200% 100%; -webkit-background-clip:text; background-clip:text; color:transparent; animation:shine 10s linear infinite; }
.shot{ position:relative; display:block; border-radius:14px; overflow:hidden; border:1px solid #1e2630; background:#0f141b; }
.shot::before{ content:""; position:absolute; inset:0; background:linear-gradient(180deg, transparent, rgba(0,0,0,.25)); opacity:0; transition:.25s ease; }
.shot img{ width:100%; height:100%; object-fit:cover; display:block; filter:saturate(1.05) contrast(1.05); }
.shot:hover::before{ opacity:1; }
.shot:hover{ transform:translateY(-4px); transition:.25s ease; }

@media (max-width: 900px){
	.clients-wall .wall-grid{ grid-template-columns:1fr; }
}

/* One-time Services */
.service-toggle-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    min-height: 40px;
}

.service-note {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: center;
    line-height: 1.3;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    font-weight: 500;
    max-width: 100%;
    word-wrap: break-word;
}

/* Platform Selection */
.platform-selection {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 0;
    min-height: 40px;
}

.platform-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.platform-option {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.platform-option:hover {
    background: rgba(237, 28, 53, 0.1);
    border-color: rgba(237, 28, 53, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 28, 53, 0.2);
}

.platform-option.selected {
    background: rgba(237, 28, 53, 0.2);
    border-color: #ED1C35;
    color: #ED1C35;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(237, 28, 53, 0.3);
}

.platform-option i {
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.platform-option:hover i {
    transform: scale(1.1);
}

.platform-option.selected i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(237, 28, 53, 0.5));
}

.platform-option span {
    display: none;
}

/* Responsive */
@media (max-width: 900px){
	.hero-inner{ grid-template-columns:1fr; text-align:left; }
	.vision{ grid-template-columns:1fr; }
}

/* Portfolio Divider */
.portfolio-divider {
	padding: 0;
	margin: 0;
}

.divider-line {
	height: 1px;
	background: linear-gradient(90deg, transparent, rgba(237, 28, 53, 0.3), rgba(246, 136, 31, 0.3), transparent);
	margin: 40px 0;
}

/* Contact Page Email Button Styling */
.social-btn.email {
	background: linear-gradient(135deg, #25D366, #128C7E) !important;
	border-color: #25D366 !important;
	color: white !important;
}

.social-btn.email:hover {
	background: linear-gradient(135deg, #128C7E, #25D366) !important;
	transform: translateY(-2px);
}

.social-link.email {
	background: linear-gradient(135deg, #25D366, #128C7E) !important;
	border-color: #25D366 !important;
	color: white !important;
}

.social-link.email:hover {
	background: linear-gradient(135deg, #128C7E, #25D366) !important;
	transform: translateY(-2px);
}

/* CAST Coming Soon Section */
.cast-coming-soon {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #0c0f14 0%, #1a1a1a 100%);
	position: relative;
	overflow: hidden;
}

.cast-coming-soon::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 100vh;
	background: radial-gradient(circle at 20% 50%, rgba(237, 28, 53, 0.15) 0%, transparent 50%),
				radial-gradient(circle at 80% 20%, rgba(246, 136, 31, 0.15) 0%, transparent 50%),
				radial-gradient(circle at 40% 80%, rgba(237, 28, 53, 0.1) 0%, transparent 50%);
	pointer-events: none;
	z-index: 1;
}

.coming-soon-content {
	text-align: center;
	position: relative;
	z-index: 2;
	max-width: 600px;
	padding: 0 20px;
}

.cast-icon {
	margin-bottom: 2rem;
}

.cast-icon .icon {
	font-size: 4rem;
	display: inline-block;
	animation: float 3s ease-in-out infinite;
}

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

.coming-soon-title {
	font-size: 3.5rem;
	font-weight: 700;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	margin-bottom: 1.5rem;
	line-height: 1.2;
}

.coming-soon-description {
	font-size: 1.25rem;
	color: #a0a0a0;
	margin-bottom: 3rem;
	line-height: 1.6;
}

.btn-home {
	display: inline-flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 2rem;
	background: linear-gradient(135deg, #ED1C35, #F6881F);
	color: white;
	text-decoration: none;
	border-radius: 12px;
	font-weight: 600;
	font-size: 1.1rem;
	transition: all 0.3s ease;
	box-shadow: 0 4px 15px rgba(237, 28, 53, 0.3);
}

.btn-home:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 25px rgba(237, 28, 53, 0.4);
}

.btn-home .btn-icon {
	font-size: 1.2rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
	.coming-soon-title {
		font-size: 2.5rem;
	}
	
	.coming-soon-description {
		font-size: 1.1rem;
	}
	
	.cast-icon .icon {
		font-size: 3rem;
	}
}

@media (max-width: 480px) {
	.coming-soon-title {
		font-size: 2rem;
	}
	
	.coming-soon-description {
		font-size: 1rem;
	}
	
	.cast-icon .icon {
		font-size: 2.5rem;
	}
	
	.btn-home {
		padding: 0.875rem 1.5rem;
		font-size: 1rem;
	}
}

